SongZihuan 5 vuotta sitten
vanhempi
sitoutus
4a39e2635b
10 muutettua tiedostoa jossa 11082 lisäystä ja 208 poistoa
  1. 3683 1
      debug.log
  2. BIN
      gwarf
  3. 0 4
      inter/interpreter.c
  4. 6 1
      mem/mem.c
  5. 10 2
      paser/lexical.c
  6. 125 23
      paser/syntax.c
  7. 6 1
      paser/token.h
  8. 4158 56
      status.log
  9. 1633 59
      token.log
  10. 1461 61
      tokenINFO.log

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 3683 - 1
debug.log


BIN
gwarf


+ 0 - 4
inter/interpreter.c

@@ -1336,7 +1336,6 @@ GWARF_result forin_func(statement *the_statement, var_list *the_var){  // read t
         goto return_value;
     }
     
-    // puts("[tag 1]goto for in");
     GWARF_value iter_value = get__iter__(&(tmp_result.value), the_var).value;  // 获取迭代object,一般是返回self
     while (1){
         GWARF_result tmp_next = get__next__(&(iter_value), the_var);// 执行__next__的返回值
@@ -1824,13 +1823,11 @@ GWARF_result login_var(var_list *the_var, var_list *old_var_list, parameter *tmp
                 break;
             }
             else if ((tmp_x != NULL)&&(tmp_s == NULL)){  // 使用默认值
-                puts("[tag 2]");
                 while(1){  // 如果是name_value类型则继续赋值
                     if(tmp_x == NULL){
                         break;
                     }
                     else if(tmp_x->type == name_value){
-                        puts("[tag 3]");
                         GWARF_result tmp = traverse(tmp_x->u.value, the_var, false);  // 执行形参
                         if(is_error(&tmp) || is_space(&tmp)){
                             return tmp;
@@ -1975,7 +1972,6 @@ GWARF_result login_var(var_list *the_var, var_list *old_var_list, parameter *tmp
         }
         else if(assignment_type == 0 && tmp_x->type == put_kwargs){  // tmp_s还没到根据name_value的阶段, 遇到了**kwargs,则把后面的所有直接变成dict
             // 放入list中
-            puts("[tag 1]");
             GWARF_result dict_tmp;
             dict_tmp.value = to_object(parameter_to_dict(tmp_s, old_var_list), old_var_list);  // 把所有name_value变成dict
             assignment_statement(tmp_x->u.var, old_var_list, the_var, dict_tmp);

+ 6 - 1
mem/mem.c

@@ -29,7 +29,12 @@ void *safe_free(void *p){  // 安全的释放
 
 void *safe_realloc(void *p, size_t size){
     void *tmp;
-    tmp = realloc(p, size);
+    if(p != NULL){
+        tmp = realloc(p, size);
+    }
+    else{
+        tmp = safe_calloc(size, 1);
+    }
     if(tmp != NULL){
         return tmp;
     }

+ 10 - 2
paser/lexical.c

@@ -134,6 +134,9 @@ int paser(int *index){
         match_text(p, global_paser[DEFAULT_PASER], "default");
         match_text(p, global_paser[RETURN_PASER], "return");
         match_str(p, global_paser[STR_PASER]);
+        match_text(p, global_paser[TRUE_PASER], "True");
+        match_text(p, global_paser[FALSE_PASER], "False");
+        match_text(p, global_paser[NONE_PASER], "None");
 
         *index = check_list(global_paser, p);  // 检查解析结果
 
@@ -299,19 +302,24 @@ void match_str(char p, word_paser *paser){  // 匹配一个var字符串
         GET_LEN(paser);
         if(paser->status == START){  // start模式先匹配'或者"
             if(p == '\''){
+                paser->text = NULL;
                 paser->status = 1;
             }
+            else if(p == '\"'){
+                paser->text = NULL;
+                paser->status = 2;
+            }
             else{
                 paser->status = NOTMATCH;
             }
         }
         else{
-            if(p != '\''){
+            if((p != '\'' && paser->status == 1) || (p != '\"' && paser->status == 2)){  // 匹配到最后一个
                 paser->text = (char *)realloc(paser->text, sizeof(char) * (len + 1));
                 paser->text[len] = p;
             }
             else{
-                paser->status = END;
+                paser->status = WAIT_END;
             }
         }
     }

+ 125 - 23
paser/syntax.c

@@ -5,7 +5,7 @@
 void factor(p_status *status, token_node *list);
 void power(p_status *status, token_node *list);
 void call_down(p_status *status, token_node *list);
-void number(p_status *status, token_node *list);
+void paser_value(p_status *status, token_node *list);
 void element(p_status *status, token_node *list);
 void var_token(p_status *status, token_node *list);
 void polynomial(p_status *status, token_node *list);
@@ -34,7 +34,7 @@ void var_ctrl_(p_status *status, token_node *list);
 void return_(p_status *status, token_node *list);
 void formal_parameter(p_status *status, token_node *list);
 void list_(p_status *status, token_node *list);
-
+void dict_(p_status *status, token_node *list);
 void paser_error(char *text);
 
 /*
@@ -163,7 +163,6 @@ void command(p_status *status, token_node *list){  // 多项式
             back_one_token(list, new_token);  // 往回[不匹配类型]
             return;
         }
-        fprintf(token_info, "[tag 7]\n");
         get_stop_token();
         push_statement(statement_base, new_token);
     }
@@ -500,7 +499,7 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
             }
             else{
                 if(status->is_dict){
-                    paser_error("dict should get ':'");
+                    paser_error("dict should get ':'[1]");
                 }
                 back_again(list,eq);  // 回退[如果使用back_one_token则会导致add_node在EQ的后面]
                 tmp = append_parameter_value(next.data.statement_value, new_token.data.parameter_list);
@@ -550,6 +549,7 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
     else{  // 模式1
         fprintf(status_log, "[info][grammar]  (formal_parameter)back one token to (top_exp)\n");
         back_one_token(list, left);
+        printf("left.type = %d\n", left.type);
         status->is_parameter = true;
         get_base_token(status, list, top_exp, next);
         status->is_parameter = false;
@@ -563,6 +563,7 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
 
         parameter *tmp = NULL;
         get_pop_token(status, list, eq);
+        printf("eq.type = %d\n", eq.type);
         if(eq.type == (status->is_dict ? COLON_PASER : EQ_PASER)){  // name_value模式
             if(status->is_list){
                 paser_error("list shouldn't get '='");
@@ -578,7 +579,7 @@ void formal_parameter(p_status *status, token_node *list){  // 因试分解
         }
         else{
             if(status->is_dict){
-                paser_error("dict should get ':'");
+                paser_error("dict should get ':'[2]");
             }
             back_again(list,eq);  // 回退[如果使用back_one_token则会导致add_node在EQ的后面]
             new_token.data.parameter_list = make_parameter_value(next.data.statement_value);
@@ -656,7 +657,6 @@ void block_(p_status *status, token_node *list){
         new_token.data_type = statement_value;
         new_token.data.statement_value = block_tmp;
         add_node(list, new_token);  // 压入节点
-        fprintf(status_log, "[tag 1]\n");
         return;
     }
     if(lp_t.type == ENTER_PASER){
@@ -1706,7 +1706,6 @@ void call_down(p_status *status, token_node *list){  // 因试分解
     parameter *p_list;
 
     left = pop_node(list);  // 先弹出一个token   检查token的类型:区分是模式1,还是模式2/3
-    fprintf(token_info, "[debug][tag 4]\n");
     if(left.type == NON_call_down){
         fprintf(status_log, "[info][grammar]  (call_down)reduce right\n");
         get_pop_token(status, list, lb_t);
@@ -1736,11 +1735,9 @@ void call_down(p_status *status, token_node *list){  // 因试分解
         }
         else{  // 递归跳出
             // 回退,也就是让下一次pop的时候读取到的是left而不是symbol
-            fprintf(token_info, "[debug][tag 5]\n");
             fprintf(status_log, "[info][grammar]  (call_back_)out\n");
             back_one_token(list, left);
             back_again(list, lb_t);
-            fprintf(token_info, "[debug][tag 6]\n");
             return;
         }
     }
@@ -1748,14 +1745,12 @@ void call_down(p_status *status, token_node *list){  // 因试分解
         fprintf(status_log, "[info][grammar]  (call_down)back one token to (element)\n");
         back_one_token(list, left);
         get_base_token(status, list, element, new_token);
-        fprintf(token_info, "[debug][tag 2]\n");
         if(new_token.type != NON_element){
             back_one_token(list, new_token);  // 往回[不匹配类型]
             return;
         }
         new_token.type = NON_call_down;
         add_node(list, new_token);
-        fprintf(token_info, "[debug][tag 3]\n");
         return call_down(status, list);  // 回调自己
     }
 }
@@ -1795,6 +1790,16 @@ void element(p_status *status, token_node *list){  // 数字归约
         add_node(list, new_token);
         return;
     }
+    else if(gett.type == LP_PASER){
+        back_one_token(list, gett);
+        get_base_token(status,list,dict_,new_token);  // 不需要safe_get_token
+        if(new_token.type != NON_dict){
+            paser_error("Don't get a dict_");
+        }
+        new_token.type = NON_element;
+        add_node(list, new_token);
+        return;
+    }
     else if(gett.type == LI_PASER){  // [1]a或[1]列表或[1,2,3,4]列表
         token exp_token, rb, tmp_var;
         get_right_token(status, list, top_exp, exp_token);
@@ -1811,7 +1816,6 @@ void element(p_status *status, token_node *list){  // 数字归约
             paser_error("Don't get 'top_exp'");            
         }
         
-        fprintf(token_info, "[tag 1.2]\n");
         get_pop_token(status, list ,rb);
         if(rb.type == RI_PASER){  // 匹配失败  TODO:: 检查是不是[1,2,3,4]的列表类型
             get_pop_token(status, list ,tmp_var);
@@ -1863,13 +1867,12 @@ void element(p_status *status, token_node *list){  // 数字归约
         back:
         new_token.type = NON_element;
         add_node(list, new_token);
-        fprintf(token_info, "[debug][tag 1]\n");
         return;
     }
     else{
-        fprintf(status_log, "[info][grammar]  (element)back one token to (number)\n");
+        fprintf(status_log, "[info][grammar]  (element)back one token to (paser_value)\n");
         back_one_token(list, gett);
-        get_base_token(status, list, number, new_token);
+        get_base_token(status, list, paser_value, new_token);
         if(new_token.type != NON_base_value){
             back_one_token(list, new_token);  // 往回[不匹配类型]
             return;
@@ -1920,12 +1923,62 @@ void list_(p_status *status, token_node *list){  // 数字归约
         new_token.data.statement_value = code_tmp;
         new_token.data_type = statement_value;
 
-        fprintf(status_log, "[info][grammar]  (var_token)out\n");
+        fprintf(status_log, "[info][grammar]  (list_)out\n");
         add_node(list, new_token);  // 压入节点
         return;
     }
     else{  // 不是期望值
-        fprintf(status_log, "[info][grammar]  (var_token)back one token\n");
+        fprintf(status_log, "[info][grammar]  (list_)back one token\n");
+        back_one_token(list, gett);
+        return;
+    }
+}
+
+/*
+dict_ : LP formal_parameter RP
+*/
+void dict_(p_status *status, token_node *list){  // 数字归约
+    fprintf(status_log, "[info][grammar]  mode status: dict_\n");
+    token gett, dict_core, rp_t, new_token;
+    parameter *base = NULL;
+
+    gett = pop_node(list);  // 取得一个token
+    if(gett.type == LP_PASER){  // var类型
+        status->is_dict = true;
+        get_right_token(status,list,formal_parameter,dict_core);
+        status->is_dict = false;
+        if(dict_core.type == RP_PASER){  // 空列表
+            base = NULL;
+            goto make_dict;
+        }
+        else if(dict_core.type == NON_parameter){
+            base = dict_core.data.parameter_list;
+        }
+        else{
+            paser_error("Don't get formal_parameter");
+        }
+
+        get_pop_token(status,list,rp_t);
+        if(rp_t.type != RP_PASER){
+            paser_error("Don't get '}'");
+        }
+
+        make_dict:
+        new_token.type = NON_dict;
+
+        statement *code_tmp =  make_statement();
+        code_tmp->type = base_dict;
+        code_tmp->code.base_dict.value = base;
+        
+        new_token.data.statement_value = code_tmp;
+        new_token.data_type = statement_value;
+
+        fprintf(status_log, "[info][grammar]  (dict_)out\n");
+        add_node(list, new_token);  // 压入节点
+        return;
+    }
+    else{  // 不是期望值
+        fprintf(status_log, "[info][grammar]  (dict_)back one token\n");
         back_one_token(list, gett);
         return;
     }
@@ -1970,8 +2023,8 @@ number : INT_PASER
        | DOUBLE_PASER
        | LB top_exp RB
 */
-void number(p_status *status, token_node *list){  // 数字归约
-    fprintf(status_log, "[info][grammar]  mode status: number\n");
+void paser_value(p_status *status, token_node *list){  // 数字归约
+    fprintf(status_log, "[info][grammar]  mode status: paser_value\n");
     token gett, new_token;
 
     gett = pop_node(list);  // 取得一个token
@@ -1989,7 +2042,6 @@ void number(p_status *status, token_node *list){  // 数字归约
         new_token.data.statement_value = code_tmp;
         new_token.data_type = statement_value;
 
-        fprintf(status_log, "[info][grammar]  (number)get int number: %d\n", tmp_value.value.int_value);
     }
     else if(gett.type == DOUBLE_PASER){
         new_token.type = NON_base_value;
@@ -2004,16 +2056,66 @@ void number(p_status *status, token_node *list){  // 数字归约
         code_tmp->code.call.parameter_list = pack_value_parameter(tmp_value);
         new_token.data.statement_value = code_tmp;
         new_token.data_type = statement_value;
+    }
+    else if(gett.type == STR_PASER){
+        new_token.type = NON_base_value;
+
+        GWARF_value tmp_value;
+        tmp_value.type = STRING_value;
+        if(gett.data.text == NULL){
+            tmp_value.value.string = "";
+        }
+        else{
+            tmp_value.value.string = gett.data.text;
+        }
+        printf("tmp_value.value.string = %s, %s\n", tmp_value.value.string, gett.data.text);
+        statement *code_tmp =  make_statement();
+        code_tmp->type = call;
+        code_tmp->code.call.func = pack_call_name("str", NULL);
+        code_tmp->code.call.parameter_list = pack_value_parameter(tmp_value);
+        new_token.data.statement_value = code_tmp;
+        new_token.data_type = statement_value;
+        goto not_free;
 
-        fprintf(status_log, "[info][grammar]  (number)get double number: %f\n", new_token.data.d_number);
+        // printf("[info][grammar]  (paser_value)get str: %s\n", tmp_value.value.string);
+    }
+    else if(gett.type == TRUE_PASER || gett.type == FALSE_PASER){
+        new_token.type = NON_base_value;
+
+        GWARF_value tmp_value;
+        tmp_value.type = BOOL_value;
+        if(gett.type == TRUE_PASER){
+            tmp_value.value.bool_value = true;
+        }
+        else{
+            tmp_value.value.bool_value = false;
+        }
+
+        statement *code_tmp =  make_statement();
+        code_tmp->type = call;
+        code_tmp->code.call.func = pack_call_name("bool", NULL);
+        code_tmp->code.call.parameter_list = pack_value_parameter(tmp_value);
+        new_token.data.statement_value = code_tmp;
+        new_token.data_type = statement_value;
+    }
+    else if(gett.type == NONE_PASER){
+        new_token.type = NON_base_value;
+
+        statement *code_tmp =  make_statement();
+        code_tmp->type = base_value;
+        code_tmp->code.base_value.value.type = NULL_value;
+        code_tmp->code.base_value.value.value.int_value = 0;
+        new_token.data.statement_value = code_tmp;
+        new_token.data_type = statement_value;
     }
     else{  // 不是期望值
-        fprintf(status_log, "[info][grammar]  (number)back one token\n");
+        fprintf(status_log, "[info][grammar]  (paser_value)back one token\n");
         back_one_token(list, gett);
         return;
     }
     free(gett.data.text);  // 释放字符串
-    fprintf(status_log, "[info][grammar]  (number)add one token\n");
+    not_free:
+    fprintf(status_log, "[info][grammar]  (paser_value)add one token\n");
     add_node(list, new_token);  // 压入节点
 }
 

+ 6 - 1
paser/token.h

@@ -3,7 +3,7 @@
 
 #include "../inter/interpreter.h"
 
-#define MAX_PASER_SIZE 55
+#define MAX_PASER_SIZE 58
 #define INT_PASER 0
 #define DOUBLE_PASER 1
 #define ENTER_PASER 2
@@ -59,6 +59,9 @@
 #define DEFAULT_PASER 52
 #define RETURN_PASER 53
 #define STR_PASER 54
+#define TRUE_PASER 55
+#define FALSE_PASER 56
+#define NONE_PASER 57
 
 // 获取并返回一个token
 #define get_pop_token(status,list,new_token) \
@@ -163,6 +166,7 @@ typedef enum token_type
     NOLOCAL = NOLOCAL_PASER,
     DEFAULT = DEFAULT_PASER,
     RETURN = RETURN_PASER,
+    STR = STR_PASER,
 
     // 特殊符号
     BAD_token = -2,
@@ -203,6 +207,7 @@ typedef enum token_type
     NON_var_ctrl = -36,
     NON_return = -37,
     NON_list = -38,
+    NON_dict = -39,
 } token_type;
 
 typedef union token_data

+ 4158 - 56
status.log

@@ -1,6 +1,6 @@
-[info][lexical]  get value = '22' len = 2 from 54
-[info]token type = 54
-[debug][grammar]  get token type : 54; data type : 1
+[info][lexical]  get value = 'a' len = 1 from 18
+[info]token type = 18
+[debug][grammar]  get token type : 18; data type : 1
 [debug][grammar]  add a token[seek : 0, index : 0, size : 1]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [  0]]
@@ -135,14 +135,13 @@
 [info][grammar]  mode status: element
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 38]]
-[info][grammar]  (element)back one token to (number)
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 39]]
-[info][grammar]  mode status: number
+[info][grammar]  mode status: var_token
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 40]]
-[info][grammar]  (number)back one token
+[info][grammar]  (var_token)out
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 41]]
@@ -156,93 +155,4196 @@
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 45]]
+[info][grammar]  mode status: call_down
 [debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 46]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ' ' len = 1 from 3
+[info][lexical]  get value = '=' len = 1 from 39
+[info]token type = 39
+[debug][grammar]  get token type : 39; data type : 1
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
 [debug][token : [ 47]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
 [debug][token : [ 48]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 49]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 50]]
+[debug][token : [ 49]]
+[info][grammar]  (call_back_)out
 [debug][grammar]  add a token[seek : 0, index : 0, size : 2]
 [debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 50]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 2]
+[debug][grammar]  after add a token[seek : 2, index : 2]
 [debug][token : [ 51]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  back a token[seek : 1, index : 2]
 [debug][token : [ 52]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 53]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
 [debug][token : [ 54]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 55]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
 [debug][token : [ 56]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 57]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 58]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][token : [ 57]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
 [debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 58]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
 [debug][token : [ 59]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  back a token[seek : 1, index : 2]
 [debug][token : [ 60]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 61]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
 [debug][token : [ 62]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 63]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
 [debug][token : [ 64]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 65]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
 [debug][token : [ 66]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 67]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
 [debug][token : [ 68]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 69]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 70]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][token : [ 69]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
 [debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 70]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
 [debug][token : [ 71]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  back a token[seek : 1, index : 2]
 [debug][token : [ 72]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 73]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
 [debug][token : [ 74]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 75]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
 [debug][token : [ 76]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
-[debug][token : [ 77]]
 [debug][grammar]  pop a token[seek : 0, index : 0]
-[debug][token : [ 78]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
+[debug][token : [ 77]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
 [debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 78]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
 [debug][token : [ 79]]
-[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][grammar]  back a token[seek : 1, index : 2]
 [debug][token : [ 80]]
-[debug][grammar]  add a token[seek : 0, index : 0, size : 2]
-[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][grammar]  pop a token[seek : 0, index : 1]
 [debug][token : [ 81]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [ 82]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [ 83]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [ 84]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [ 85]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 86]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [ 87]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [ 88]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [ 89]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [ 90]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [ 91]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [ 92]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [ 93]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [ 94]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [ 95]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [ 96]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [ 97]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [ 98]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [ 99]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [100]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [101]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [102]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [103]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [104]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [105]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [106]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [107]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [108]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [109]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [110]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [111]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [112]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [113]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [114]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [115]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [116]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [117]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [118]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [119]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [120]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [121]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [122]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [123]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [124]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [125]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [126]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [127]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [128]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [129]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [130]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [131]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [132]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [133]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [134]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [135]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [136]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [137]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [138]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [139]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [140]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [141]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [142]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [143]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [144]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [145]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [146]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [147]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [148]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [149]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [150]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [151]]
+[info][lexical]  get value = ' ' len = 1 from 3
+[info][lexical]  get value = '{' len = 1 from 11
+[info]token type = 11
+[debug][grammar]  get token type : 11; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [152]]
+[debug][token : [153]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [154]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [155]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [156]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [157]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [158]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [159]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [160]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [161]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [162]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [163]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [164]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [165]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [166]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [167]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [168]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [169]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [170]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [171]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [172]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [173]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [174]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [175]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [176]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [177]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [178]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [179]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [180]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [181]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [182]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [183]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [184]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [185]]
+[info][grammar]  mode status: dict_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [186]]
+[info][lexical]  get value = 's' len = 1 from 54
+[info]token type = 54
+[debug][grammar]  get token type : 54; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [187]]
+[debug][token : [188]]
+[info][grammar]  mode status: formal_parameter
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [189]]
+[info][grammar]  (formal_parameter)back one token to (top_exp)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [190]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [191]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [192]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [193]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [194]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [195]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [196]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [197]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [198]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [199]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [200]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [201]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [202]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [203]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [204]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [205]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [206]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [207]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [208]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [209]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [210]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [211]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [212]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [213]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [214]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [215]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [216]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [217]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [218]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [219]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [220]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [221]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [222]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [223]]
+[info][grammar]  (element)back one token to (paser_value)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [224]]
+[info][grammar]  mode status: paser_value
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [225]]
+[info][grammar]  (paser_value)add one token
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [226]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [227]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [228]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [229]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [230]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [231]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ':' len = 1 from 16
+[info]token type = 16
+[debug][grammar]  get token type : 16; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [232]]
+[debug][token : [233]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [234]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [235]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [236]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [237]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [238]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [239]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [240]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [241]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [242]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [243]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [244]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [245]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [246]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [247]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [248]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [249]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [250]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [251]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [252]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [253]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [254]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [255]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [256]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [257]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [258]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [259]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [260]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [261]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [262]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [263]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [264]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [265]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [266]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [267]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [268]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [269]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [270]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [271]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [272]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [273]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [274]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [275]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [276]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [277]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [278]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [279]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [280]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [281]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [282]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [283]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [284]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [285]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [286]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [287]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [288]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [289]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [290]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [291]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [292]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [293]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [294]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [295]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [296]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [297]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [298]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [299]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [300]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [301]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [302]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [303]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [304]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [305]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [306]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [307]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [308]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [309]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [310]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [311]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [312]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [313]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [314]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [315]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [316]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [317]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [318]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [319]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [320]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [321]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [322]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [323]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [324]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [325]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [326]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [327]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [328]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [329]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [330]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [331]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [332]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [333]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [334]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [335]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [336]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [337]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [338]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [339]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [340]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [341]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [342]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [343]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [344]]
+[info][lexical]  get value = '32' len = 2 from 0
+[info]token type = 0
+[debug][grammar]  get token type : 0; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [345]]
+[debug][token : [346]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [347]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [348]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [349]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [350]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [351]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [352]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [353]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [354]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [355]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [356]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [357]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [358]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [359]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [360]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [361]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [362]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [363]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [364]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [365]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [366]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [367]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [368]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [369]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [370]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [371]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [372]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [373]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [374]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [375]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [376]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [377]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [378]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [379]]
+[info][grammar]  (element)back one token to (paser_value)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [380]]
+[info][grammar]  mode status: paser_value
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [381]]
+[info][grammar]  (paser_value)add one token
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [382]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [383]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [384]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [385]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [386]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [387]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ',' len = 1 from 41
+[info]token type = 41
+[debug][grammar]  get token type : 41; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [388]]
+[debug][token : [389]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [390]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [391]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [392]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [393]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [394]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [395]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [396]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [397]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [398]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [399]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [400]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [401]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [402]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [403]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [404]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [405]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [406]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [407]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [408]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [409]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [410]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [411]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [412]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [413]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [414]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [415]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [416]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [417]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [418]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [419]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [420]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [421]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [422]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [423]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [424]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [425]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [426]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [427]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [428]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [429]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [430]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [431]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [432]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [433]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [434]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [435]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [436]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [437]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [438]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [439]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [440]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [441]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [442]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [443]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [444]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [445]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [446]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [447]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [448]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [449]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [450]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [451]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [452]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [453]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [454]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [455]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [456]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [457]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [458]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [459]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [460]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [461]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [462]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [463]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [464]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [465]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [466]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [467]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [468]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [469]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [470]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [471]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [472]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [473]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [474]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [475]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [476]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [477]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [478]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [479]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [480]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [481]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [482]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [483]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [484]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [485]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [486]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [487]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [488]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [489]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [490]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [491]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [492]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [493]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [494]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [495]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [496]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [497]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [498]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [499]]
+[info][grammar]  mode status: formal_parameter
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [500]]
+[info][grammar]  (formal_parameter)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [501]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [502]]
+[info][lexical]  get value = 'b' len = 1 from 54
+[info]token type = 54
+[debug][grammar]  get token type : 54; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [503]]
+[debug][token : [504]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [505]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [506]]
+[debug][grammar]  back a token[seek : 0, index : 1]
+[debug][token : [507]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [508]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [509]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [510]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [511]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [512]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [513]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [514]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [515]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [516]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [517]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [518]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [519]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [520]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [521]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [522]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [523]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [524]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [525]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [526]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [527]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [528]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [529]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [530]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [531]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [532]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [533]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [534]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [535]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [536]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [537]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [538]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [539]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [540]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [541]]
+[info][grammar]  (element)back one token to (paser_value)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [542]]
+[info][grammar]  mode status: paser_value
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [543]]
+[info][grammar]  (paser_value)add one token
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [544]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [545]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [546]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [547]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [548]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [549]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ':' len = 1 from 16
+[info]token type = 16
+[debug][grammar]  get token type : 16; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [550]]
+[debug][token : [551]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [552]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [553]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [554]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [555]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [556]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [557]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [558]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [559]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [560]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [561]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [562]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [563]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [564]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [565]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [566]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [567]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [568]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [569]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [570]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [571]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [572]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [573]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [574]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [575]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [576]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [577]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [578]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [579]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [580]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [581]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [582]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [583]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [584]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [585]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [586]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [587]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [588]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [589]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [590]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [591]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [592]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [593]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [594]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [595]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [596]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [597]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [598]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [599]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [600]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [601]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [602]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [603]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [604]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [605]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [606]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [607]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [608]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [609]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [610]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [611]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [612]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [613]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [614]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [615]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [616]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [617]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [618]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [619]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [620]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [621]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [622]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [623]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [624]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [625]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [626]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [627]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [628]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [629]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [630]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [631]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [632]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [633]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [634]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [635]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [636]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [637]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [638]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [639]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [640]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [641]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [642]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [643]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [644]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [645]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [646]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [647]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [648]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [649]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [650]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [651]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [652]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [653]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [654]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [655]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [656]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [657]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [658]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [659]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [660]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [661]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [662]]
+[info][lexical]  get value = '2' len = 1 from 0
+[info]token type = 0
+[debug][grammar]  get token type : 0; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [663]]
+[debug][token : [664]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [665]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [666]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [667]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [668]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [669]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [670]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [671]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [672]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [673]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [674]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [675]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [676]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [677]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [678]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [679]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [680]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [681]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [682]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [683]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [684]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [685]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [686]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [687]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [688]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [689]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [690]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [691]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [692]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [693]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [694]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [695]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [696]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [697]]
+[info][grammar]  (element)back one token to (paser_value)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [698]]
+[info][grammar]  mode status: paser_value
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [699]]
+[info][grammar]  (paser_value)add one token
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [700]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [701]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [702]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [703]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [704]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [705]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = '}' len = 1 from 12
+[info]token type = 12
+[debug][grammar]  get token type : 12; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [706]]
+[debug][token : [707]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [708]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [709]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [710]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [711]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [712]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [713]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [714]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [715]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [716]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [717]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [718]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [719]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [720]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [721]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [722]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [723]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [724]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [725]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [726]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [727]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [728]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [729]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [730]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [731]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [732]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [733]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [734]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [735]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [736]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [737]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [738]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [739]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [740]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [741]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [742]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [743]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [744]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [745]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [746]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [747]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [748]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [749]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [750]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [751]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [752]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [753]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [754]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [755]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [756]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [757]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [758]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [759]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [760]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [761]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [762]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [763]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [764]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [765]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [766]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [767]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [768]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [769]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [770]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [771]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [772]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [773]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [774]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [775]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [776]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [777]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [778]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [779]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [780]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [781]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [782]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [783]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [784]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [785]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [786]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [787]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [788]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [789]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [790]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [791]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [792]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [793]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [794]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [795]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [796]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [797]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [798]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [799]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [800]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [801]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [802]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [803]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [804]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [805]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [806]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [807]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [808]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [809]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [810]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [811]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [812]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [813]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [814]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [815]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [816]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [817]]
+[info][grammar]  mode status: formal_parameter
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [818]]
+[info][grammar]  (formal_parameter)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [819]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [820]]
+[info][grammar]  (formal_parameter)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [821]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [822]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [823]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [824]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [825]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [826]]
+[info][grammar]  (dict_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [827]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [828]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [829]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [830]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [831]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [832]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = '
+' len = 1 from 2
+[info]token type = 2
+[debug][grammar]  get token type : 2; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [833]]
+[debug][token : [834]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [835]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [836]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [837]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [838]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [839]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [840]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [841]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [842]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [843]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [844]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [845]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [846]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [847]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [848]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [849]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [850]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [851]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [852]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [853]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [854]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [855]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [856]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [857]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [858]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [859]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [860]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [861]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [862]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [863]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [864]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [865]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [866]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [867]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [868]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [869]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [870]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [871]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [872]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [873]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [874]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [875]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [876]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [877]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [878]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [879]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [880]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [881]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [882]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [883]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [884]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [885]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [886]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [887]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [888]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [889]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [890]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [891]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [892]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [893]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [894]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [895]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [896]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [897]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [898]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [899]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [900]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [901]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [902]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [903]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [904]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [905]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [906]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [907]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [908]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [909]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [910]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [911]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [912]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [913]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [914]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [915]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [916]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [917]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [918]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [919]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [920]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [921]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [922]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [923]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [924]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [925]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [926]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [927]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [928]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [929]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [930]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [931]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [932]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [933]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [934]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [935]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [936]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [937]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [938]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [939]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [940]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [941]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [942]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [943]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [944]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [945]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [946]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [947]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [948]]
+[info][grammar]  mode status: command_list
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [949]]
+[info][grammar]  (command_list)reduce right
+[info][lexical]  get value = 'a' len = 1 from 18
+[info]token type = 18
+[debug][grammar]  get token type : 18; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [950]]
+[debug][token : [951]]
+[info][grammar]  mode status: command
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [952]]
+[info][grammar]  (command)back one token to (top_exp)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [953]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [954]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [955]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [956]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [957]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [958]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [959]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [960]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [961]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [962]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [963]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [964]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [965]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [966]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [967]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [968]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [969]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [970]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [971]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [972]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [973]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [974]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [975]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [976]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [977]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [978]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [979]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [980]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [981]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [982]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [983]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [984]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [985]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [986]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [987]]
+[info][grammar]  mode status: var_token
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [988]]
+[info][grammar]  (var_token)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [989]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [990]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [991]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [992]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [993]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [994]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = '[' len = 1 from 19
+[info]token type = 19
+[debug][grammar]  get token type : 19; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [995]]
+[debug][token : [996]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [997]]
+[info][lexical]  get value = 's' len = 1 from 54
+[info]token type = 54
+[debug][grammar]  get token type : 54; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [998]]
+[debug][token : [999]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1000]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1001]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1002]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1003]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1004]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1005]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1006]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1007]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1008]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1009]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1010]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1011]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1012]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1013]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1014]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1015]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1016]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1017]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1018]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1019]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1020]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1021]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1022]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1023]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1024]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1025]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1026]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1027]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1028]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1029]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1030]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1031]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1032]]
+[info][grammar]  (element)back one token to (paser_value)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1033]]
+[info][grammar]  mode status: paser_value
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1034]]
+[info][grammar]  (paser_value)add one token
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1035]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1036]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1037]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1038]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1039]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1040]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ']' len = 1 from 20
+[info]token type = 20
+[debug][grammar]  get token type : 20; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1041]]
+[debug][token : [1042]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1043]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1044]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1045]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1046]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1047]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1048]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1049]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1050]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1051]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1052]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1053]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1054]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1055]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1056]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1057]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1058]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1059]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1060]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1061]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1062]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1063]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1064]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1065]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1066]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1067]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1068]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1069]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1070]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1071]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1072]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1073]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1074]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1075]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1076]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1077]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1078]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1079]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1080]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1081]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1082]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1083]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1084]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1085]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1086]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1087]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1088]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1089]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1090]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1091]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1092]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1093]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1094]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1095]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1096]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1097]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1098]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1099]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1100]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1101]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1102]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1103]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1104]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1105]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1106]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1107]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1108]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1109]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1110]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1111]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1112]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1113]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1114]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1115]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1116]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1117]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1118]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1119]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1120]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1121]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1122]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1123]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1124]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1125]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1126]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1127]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1128]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1129]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1130]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1131]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1132]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1133]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1134]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1135]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1136]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1137]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1138]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1139]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1140]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1141]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1142]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1143]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1144]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1145]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1146]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1147]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1148]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1149]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1150]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1151]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1152]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1153]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1154]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1155]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ' ' len = 1 from 3
+[info][lexical]  get value = '*' len = 1 from 6
+[info]token type = 6
+[debug][grammar]  get token type : 6; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1156]]
+[debug][token : [1157]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1158]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1159]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1160]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1161]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1162]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1163]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1164]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1165]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1166]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1167]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1168]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1169]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1170]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1171]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1172]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1173]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1174]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1175]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1176]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1177]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1178]]
+[info][lexical]  get value = ' ' len = 1 from 3
+[info][lexical]  get value = 'a' len = 1 from 18
+[info]token type = 18
+[debug][grammar]  get token type : 18; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1179]]
+[debug][token : [1180]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1181]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1182]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1183]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1184]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1185]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1186]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1187]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1188]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1189]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1190]]
+[info][grammar]  mode status: var_token
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1191]]
+[info][grammar]  (var_token)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1192]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1193]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1194]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1195]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1196]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1197]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = '[' len = 1 from 19
+[info]token type = 19
+[debug][grammar]  get token type : 19; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1198]]
+[debug][token : [1199]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1200]]
+[info][lexical]  get value = 'b' len = 1 from 54
+[info]token type = 54
+[debug][grammar]  get token type : 54; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1201]]
+[debug][token : [1202]]
+[info][grammar]  mode status: top_exp
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1203]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1204]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1205]]
+[info][grammar]  (call_back_)back one token to (bool_or)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1206]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1207]]
+[info][grammar]  (bool_or)back one token to (bool_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1208]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1209]]
+[info][grammar]  (bool_and)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1210]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1211]]
+[info][grammar]  (negative)back one token to (compare)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1212]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1213]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1214]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1215]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1216]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1217]]
+[info][grammar]  (bit_or)back one token to (bit_and)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1218]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1219]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1220]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1221]]
+[info][grammar]  (bit_move)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1222]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1223]]
+[info][grammar]  (polynomial)back one token to (factor)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1224]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1225]]
+[info][grammar]  (factor)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1226]]
+[info][grammar]  mode status: negative
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1227]]
+[info][grammar]  (negative)back one token to (bit_not)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1228]]
+[info][grammar]  mode status: bit_not
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1229]]
+[info][grammar]  (bit_not)back one token to (power)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1230]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1231]]
+[info][grammar]  (power)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1232]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1233]]
+[info][grammar]  (call_down)back one token to (element)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1234]]
+[info][grammar]  mode status: element
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1235]]
+[info][grammar]  (element)back one token to (paser_value)
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1236]]
+[info][grammar]  mode status: paser_value
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1237]]
+[info][grammar]  (paser_value)add one token
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1238]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1239]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1240]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1241]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1242]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1243]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = ']' len = 1 from 20
+[info]token type = 20
+[debug][grammar]  get token type : 20; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1244]]
+[debug][token : [1245]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1246]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1247]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1248]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1249]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1250]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1251]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1252]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1253]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1254]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1255]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1256]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1257]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1258]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1259]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1260]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1261]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1262]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1263]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1264]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1265]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1266]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1267]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1268]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1269]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1270]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1271]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1272]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1273]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1274]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1275]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1276]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1277]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1278]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1279]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1280]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1281]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1282]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1283]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1284]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1285]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1286]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1287]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1288]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1289]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1290]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1291]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1292]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1293]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1294]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1295]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1296]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1297]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1298]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1299]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1300]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1301]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1302]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1303]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1304]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1305]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1306]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1307]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1308]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1309]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1310]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1311]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1312]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1313]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1314]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1315]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1316]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1317]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1318]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1319]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1320]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1321]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1322]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1323]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1324]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1325]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1326]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1327]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1328]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1329]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1330]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1331]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1332]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1333]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1334]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1335]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1336]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1337]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1338]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1339]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1340]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1341]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1342]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1343]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1344]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1345]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1346]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1347]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1348]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1349]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1350]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1351]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1352]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1353]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1354]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1355]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1356]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1357]]
+[info][grammar]  mode status: call_down
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1358]]
+[info][grammar]  (call_down)reduce right
+[info][lexical]  get value = '
+' len = 1 from 2
+[info]token type = 2
+[debug][grammar]  get token type : 2; data type : 1
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1359]]
+[debug][token : [1360]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1361]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1362]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1363]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1364]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1365]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1366]]
+[info][grammar]  mode status: power
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1367]]
+[info][grammar]  (power)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1368]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1369]]
+[info][grammar]  (power)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1370]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1371]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1372]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1373]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1374]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1375]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1376]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1377]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1378]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1379]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1380]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1381]]
+[info][grammar]  (factor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1382]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1383]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1384]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1385]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1386]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1387]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1388]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1389]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1390]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1391]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1392]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1393]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1394]]
+[info][grammar]  mode status: factor
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1395]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1396]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1397]]
+[info][grammar]  (bit_move)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1398]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1399]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1400]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1401]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1402]]
+[info][grammar]  mode status: bit_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1403]]
+[info][grammar]  (factor)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1404]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1405]]
+[info][grammar]  (bit_and)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1406]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1407]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1408]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1409]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1410]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1411]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1412]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1413]]
+[info][grammar]  (bit_or)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1414]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1415]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1416]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1417]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1418]]
+[info][grammar]  mode status: bit_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1419]]
+[info][grammar]  (bit_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1420]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1421]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1422]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1423]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1424]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1425]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1426]]
+[info][grammar]  mode status: polynomial
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1427]]
+[info][grammar]  (polynomial)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1428]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1429]]
+[info][grammar]  (polynomial)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1430]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1431]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1432]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1433]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1434]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1435]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1436]]
+[info][grammar]  mode status: bool_and
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1437]]
+[info][grammar]  (bool_and)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1438]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1439]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1440]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1441]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1442]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1443]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1444]]
+[info][grammar]  mode status: bool_or
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1445]]
+[info][grammar]  (bool_or)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1446]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1447]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1448]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1449]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1450]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1451]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1452]]
+[info][grammar]  mode status: call_back_
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1453]]
+[info][grammar]  (call_back_)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1454]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1455]]
+[info][grammar]  (call_back_)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1456]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1457]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1458]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1459]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1460]]
+[info][grammar]  mode status: eq_number
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1461]]
+[info][grammar]  (eq_number)reduce right
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1462]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1463]]
+[info][grammar]  (bit_notor)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1464]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1465]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1466]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1467]]
+[debug][grammar]  add a token[seek : 0, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 2]
+[debug][token : [1468]]
+[debug][grammar]  pop a token[seek : 0, index : 1]
+[debug][token : [1469]]
+[debug][grammar]  get token seek += 1 : 0, index : 1
+[debug][token : [1470]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1471]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1472]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1473]]
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1474]]
+[info][grammar]  mode status: command_list
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1475]]
+[info][grammar]  (command_list)reduce right
+[info]token type = <EOF>
+[debug][grammar]  get token type : -3; data type : 7
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1476]]
+[debug][token : [1477]]
+[info][grammar]  mode status: command
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1478]]
+[info][grammar]  (command)back <EOF>
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1479]]
+[debug][grammar]  pop a token[seek : 0, index : 0]
+[debug][token : [1480]]
+[info][grammar]  (command_list)out
+[debug][grammar]  add a token[seek : 0, index : 0, size : 3]
+[debug][grammar]  after add a token[seek : 1, index : 1]
+[debug][token : [1481]]
+[debug][grammar]  add a token[seek : 1, index : 1, size : 3]
+[debug][grammar]  after add a token[seek : 2, index : 2]
+[debug][token : [1482]]
+[debug][grammar]  back a token[seek : 1, index : 2]
+[debug][token : [1483]]

+ 1633 - 59
token.log

@@ -1,82 +1,1656 @@
-[debug][token : [  0]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [  1]]  token list[from      safe_get_token(get token)] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  0]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  1]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  2]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  3]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  3]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  4]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  5]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  5]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  6]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  7]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  7]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [  8]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [  9]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [  9]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 10]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 11]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 11]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 12]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 13]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 13]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 14]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 15]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 15]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 16]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 17]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 17]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 18]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 19]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 19]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 20]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 21]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 21]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 22]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 23]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 23]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 24]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 25]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 25]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 26]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 27]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 27]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 28]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 29]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 29]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 30]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 31]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 31]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 32]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 33]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 33]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 34]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 35]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 35]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 36]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 37]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 37]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 38]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 39]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 39]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 40]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 41]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 41]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 42]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 43]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 43]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 44]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 45]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 45]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
 [debug][token : [ 46]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 47]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 48]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 49]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 50]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 51]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 52]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 53]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 54]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 55]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 56]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 57]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 58]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 59]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 60]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 61]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 62]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 63]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 64]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 65]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 66]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 67]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 68]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 69]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 70]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 71]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 72]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 73]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 74]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 75]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 76]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 77]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 78]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 79]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
-[debug][token : [ 80]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
-[debug][token : [ 81]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : 22 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 47]]  token list[from                      add_token] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 48]]  token list[from      safe_get_token(get token)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 49]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> -  ||- END
+[debug][token : [ 50]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> -  ||- END
+[debug][token : [ 51]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [ 52]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 53]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 54]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 55]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 56]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 57]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 58]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 59]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [ 60]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 61]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 62]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 63]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 64]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 65]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 66]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 67]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 68]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 69]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 70]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 71]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [ 72]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 73]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 74]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 75]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 76]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 77]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 78]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 79]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [ 80]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 81]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 82]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 83]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 84]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 85]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 86]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 87]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [ 88]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 89]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 90]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 91]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 92]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 93]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 94]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 95]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [ 96]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 97]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [ 98]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [ 99]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [100]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [101]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [102]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [103]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [104]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [105]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [106]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [107]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [108]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [109]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [110]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [111]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [112]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [113]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [114]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [115]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [116]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [117]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [118]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [119]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [120]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [121]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [122]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [123]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [124]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [125]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [126]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [127]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [128]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [129]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [130]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [131]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [132]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [133]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [134]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [135]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [136]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [137]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [138]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [139]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [140]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [141]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [142]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [143]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [144]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [145]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [pop] data(text) : = num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [146]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [147]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [148]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 3 on 2e6804b0 num = 0> - <token : 39 [seek] data(text) : = num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [149]]  token list[from                      pop_token] :: <token : 39 [seek] data(text) : = num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [150]]  token list[from      safe_get_token(move seek)] :: <token : 39 [pop] data(text) : = num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [151]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [152]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [153]]  token list[from      safe_get_token(get token)] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [154]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [155]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [156]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [157]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [158]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [159]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [160]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [161]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [162]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [163]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [164]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [165]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [166]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [167]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [168]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [169]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [170]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [171]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [172]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [173]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [174]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [175]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [176]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [177]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [178]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [179]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [180]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [181]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [182]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [183]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [184]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [185]]  token list[from                      add_token] :: <token : 11 [pop] data(text) : { num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [186]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [187]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [188]]  token list[from      safe_get_token(get token)] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [189]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [190]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [191]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [192]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [193]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [194]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [195]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [196]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [197]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [198]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [199]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [200]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [201]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [202]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [203]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [204]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [205]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [206]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [207]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [208]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [209]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [210]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [211]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [212]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [213]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [214]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [215]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [216]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [217]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [218]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [219]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [220]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [221]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [222]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [223]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [224]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [225]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [226]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [227]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [228]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [229]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [230]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [231]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [232]]  token list[from                      add_token] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [233]]  token list[from      safe_get_token(get token)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [234]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [235]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [236]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [237]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [238]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [239]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [240]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [241]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [242]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [243]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [244]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [245]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [246]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [247]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [248]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [249]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [250]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [251]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [252]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [253]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [254]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [255]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [256]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [257]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [258]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [259]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [260]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [261]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [262]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [263]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [264]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [265]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [266]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [267]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [268]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [269]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [270]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [271]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [272]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [273]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [274]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [275]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [276]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [277]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [278]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [279]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [280]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [281]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [282]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [283]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [284]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [285]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [286]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [287]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [288]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [289]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [290]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [291]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [292]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [293]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [294]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [295]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [296]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [297]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [298]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [299]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [300]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [301]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [302]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [303]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [304]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [305]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [306]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [307]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [308]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [309]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [310]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [311]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [312]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [313]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [314]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [315]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [316]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [317]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [318]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [319]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [320]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [321]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [322]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [323]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [324]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [325]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [326]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [327]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [328]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [329]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [330]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [331]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [332]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [333]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [334]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [335]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [336]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [337]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [338]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [339]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [340]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [341]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on 2e680660 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [342]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [343]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [344]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [345]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [346]]  token list[from      safe_get_token(get token)] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [347]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [348]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [349]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [350]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [351]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [352]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [353]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [354]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [355]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [356]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [357]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [358]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [359]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [360]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [361]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [362]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [363]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [364]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [365]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [366]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [367]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [368]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [369]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [370]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [371]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [372]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [373]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [374]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [375]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [376]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [377]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [378]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [379]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [380]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 32 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [381]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [382]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [383]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [384]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [385]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [386]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [387]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [388]]  token list[from                      add_token] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [389]]  token list[from      safe_get_token(get token)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [390]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [391]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [392]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [393]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [394]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [395]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [396]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [397]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [398]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [399]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [400]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [401]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [402]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [403]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [404]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [405]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [406]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [407]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [408]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [409]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [410]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [411]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [412]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [413]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [414]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [415]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [416]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [417]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [418]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [419]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [420]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [421]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [422]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [423]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [424]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [425]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [426]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [427]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [428]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [429]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [430]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [431]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [432]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [433]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [434]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [435]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [436]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [437]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [438]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [439]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [440]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [441]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [442]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [443]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [444]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [445]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [446]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [447]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [448]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [449]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [450]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [451]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [452]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [453]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [454]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [455]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [456]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [457]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [458]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [459]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [460]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [461]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [462]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [463]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [464]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [465]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [466]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [467]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [468]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [469]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [470]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [471]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [472]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [473]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [474]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [475]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [476]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [477]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [478]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [479]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [480]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [481]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [482]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [483]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [484]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [485]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [486]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [487]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [488]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [489]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [490]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [491]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [492]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [493]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [494]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [pop] data(text) : , num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [495]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [496]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [497]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on 2e6807b0 num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [498]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [499]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on 2e6808a0num = 0> - <token : 41 [seek] data(text) : , num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [500]]  token list[from                      pop_token] :: <token : 41 [seek] data(text) : , num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [501]]  token list[from      safe_get_token(move seek)] :: <token : 41 [pop] data(text) : , num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [502]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [503]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [504]]  token list[from      safe_get_token(get token)] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [505]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [506]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [507]]  token list[from                     back_token] :: <token : 54 [seek] data(text) : b num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [508]]  token list[from      safe_get_token(move seek)] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [509]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [510]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [511]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [512]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [513]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [514]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [515]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [516]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [517]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [518]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [519]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [520]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [521]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [522]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [523]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [524]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [525]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [526]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [527]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [528]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [529]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [530]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [531]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [532]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [533]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [534]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [535]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [536]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [537]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [538]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [539]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [540]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [541]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [542]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [543]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [544]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [545]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [546]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [547]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [548]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [549]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [550]]  token list[from                      add_token] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [551]]  token list[from      safe_get_token(get token)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [552]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [553]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [554]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [555]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [556]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [557]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [558]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [559]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [560]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [561]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [562]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [563]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [564]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [565]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [566]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [567]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [568]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [569]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [570]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [571]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [572]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [573]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [574]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [575]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [576]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [577]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [578]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [579]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [580]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [581]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [582]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [583]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [584]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [585]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [586]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [587]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [588]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [589]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [590]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [591]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [592]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [593]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [594]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [595]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [596]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [597]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [598]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [599]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [600]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [601]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [602]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [603]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [604]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [605]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [606]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [607]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [608]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [609]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [610]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [611]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [612]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [613]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [614]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [615]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [616]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [617]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [618]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [619]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [620]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [621]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [622]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [623]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [624]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [625]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [626]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [627]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [628]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [629]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [630]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [631]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [632]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [633]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [634]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [635]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [636]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [637]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [638]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [639]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [640]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [641]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [642]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [643]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [644]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [645]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [646]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [647]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [648]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [649]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [650]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [651]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [652]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [653]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [654]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [655]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [656]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [pop] data(text) : : num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [657]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [658]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [659]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on 2e6808d0 num = 0> - <token : 16 [seek] data(text) : : num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [660]]  token list[from                      pop_token] :: <token : 16 [seek] data(text) : : num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [661]]  token list[from      safe_get_token(move seek)] :: <token : 16 [pop] data(text) : : num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [662]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [663]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [664]]  token list[from      safe_get_token(get token)] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [665]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [666]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [667]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [668]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [669]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [670]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [671]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [672]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [673]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [674]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [675]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [676]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [677]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [678]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [679]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [680]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [681]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [682]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [683]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [684]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [685]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [686]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [687]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [688]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [689]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [690]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [691]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [692]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [693]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [694]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [695]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [696]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [697]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [698]]  token list[from                      add_token] :: <token : 0 [pop] data(text) : 2 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [699]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [700]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [701]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [702]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [703]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [704]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [705]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [706]]  token list[from                      add_token] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [707]]  token list[from      safe_get_token(get token)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [708]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [709]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [710]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [711]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [712]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [713]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [714]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [715]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [716]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [717]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [718]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [719]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [720]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [721]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [722]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [723]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [724]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [725]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [726]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [727]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [728]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [729]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [730]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [731]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [732]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [733]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [734]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [735]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [736]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [737]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [738]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [739]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [740]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [741]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [742]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [743]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [744]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [745]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [746]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [747]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [748]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [749]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [750]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [751]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [752]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [753]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [754]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [755]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [756]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [757]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [758]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [759]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [760]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [761]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [762]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [763]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [764]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [765]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [766]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [767]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [768]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [769]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [770]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [771]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [772]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [773]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [774]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [775]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [776]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [777]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [778]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [779]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [780]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [781]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [782]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [783]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [784]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [785]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [786]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [787]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [788]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [789]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [790]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [791]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [792]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [793]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [794]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [795]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [796]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [797]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [798]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [799]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [800]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [801]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [802]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [803]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [804]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [805]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [806]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [807]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [808]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [809]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [810]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [811]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [812]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [813]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [814]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [815]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on 2e680a20 num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [816]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [817]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on 2e6808a0num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [818]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [819]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [820]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [821]]  token list[from                      add_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on 2e6808a0num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [822]]  token list[from                      add_token] :: <token : -33 data(parameter_list) : parameter_list on 2e6808a0num = 0> - <token : 12 [pop] data(text) : } num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [823]]  token list[from                     back_token] :: <token : -33 [pop] data(parameter_list) : parameter_list on 2e6808a0num = 0> - <token : 12 [seek] data(text) : } num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [824]]  token list[from                      pop_token] :: <token : 12 [seek] data(text) : } num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [825]]  token list[from      safe_get_token(move seek)] :: <token : 12 [pop] data(text) : } num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [826]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [827]]  token list[from                      add_token] :: <token : -39 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [828]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [829]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [830]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [831]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [832]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [833]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [834]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [835]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [836]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [837]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [838]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [839]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [840]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [841]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [842]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [843]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [844]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [845]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [846]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [847]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [848]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [849]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [850]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [851]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [852]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [853]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [854]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [855]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [856]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [857]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [858]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [859]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [860]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [861]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [862]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [863]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [864]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [865]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [866]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [867]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [868]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [869]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [870]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [871]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [872]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [873]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [874]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [875]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [876]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [877]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [878]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [879]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [880]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [881]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [882]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [883]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [884]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [885]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [886]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [887]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [888]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [889]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [890]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [891]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [892]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [893]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [894]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [895]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [896]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [897]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [898]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [899]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [900]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [901]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [902]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [903]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [904]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [905]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [906]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [907]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [908]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [909]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [910]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [911]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [912]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [913]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [914]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [915]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [916]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [917]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [918]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [919]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [920]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [921]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [922]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [923]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [924]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [925]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [926]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [927]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [928]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [929]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [930]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [931]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [932]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 6 on 2e680b40 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [933]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [934]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 2 on 2e680b80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [935]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [936]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [937]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [938]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 2 on 2e680b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [939]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 2 on 2e680b80 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [940]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 2 on 2e680b80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [941]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [942]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 2 on 2e680b80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [943]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [944]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [945]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [946]]  token list[from                      add_token] :: <token : -8 [pop] data(statement_value) : 2 on 2e680b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [947]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [948]]  token list[from                      add_token] :: <token : -9 [pop] data(statement_value) : 2 on 2e680b80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [949]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [950]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [951]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [952]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [953]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [954]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [955]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [956]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [957]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [958]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [959]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [960]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [961]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [962]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [963]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [964]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [965]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [966]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [967]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [968]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [969]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [970]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [971]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [972]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [973]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [974]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [975]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [976]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [977]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [978]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [979]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [980]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [981]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [982]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [983]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [984]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [985]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [986]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [987]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [988]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [989]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on 2e680be0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [990]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [991]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on 2e680be0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [992]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [993]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on 2e680be0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [994]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [995]]  token list[from                      add_token] :: <token : 19 [pop] data(text) : [ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [996]]  token list[from      safe_get_token(get token)] :: <token : 19 [pop] data(text) : [ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [997]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [998]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [999]]  token list[from      safe_get_token(get token)] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1000]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1001]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1002]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1003]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1004]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1005]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1006]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1007]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1008]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1009]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1010]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1011]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1012]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1013]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1014]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1015]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1016]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1017]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1018]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1019]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1020]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1021]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1022]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1023]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1024]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1025]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1026]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1027]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1028]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1029]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1030]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1031]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1032]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1033]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : s num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1034]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1035]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1036]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1037]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1038]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1039]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1040]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1041]]  token list[from                      add_token] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1042]]  token list[from      safe_get_token(get token)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1043]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1044]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1045]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1046]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1047]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1048]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1049]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1050]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1051]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1052]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1053]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1054]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1055]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1056]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1057]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1058]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1059]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1060]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1061]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1062]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1063]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1064]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1065]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1066]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1067]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1068]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1069]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1070]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1071]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1072]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1073]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1074]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1075]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1076]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1077]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1078]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1079]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1080]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1081]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1082]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1083]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1084]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1085]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1086]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1087]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1088]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1089]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1090]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1091]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1092]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1093]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1094]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1095]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1096]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1097]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1098]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1099]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1100]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1101]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1102]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1103]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1104]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1105]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1106]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1107]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1108]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1109]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1110]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1111]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1112]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1113]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1114]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1115]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1116]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1117]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1118]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1119]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1120]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1121]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1122]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1123]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1124]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1125]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1126]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1127]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1128]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1129]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1130]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1131]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1132]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1133]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1134]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1135]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1136]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1137]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1138]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1139]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1140]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1141]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1142]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1143]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1144]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1145]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1146]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1147]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1148]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1149]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1150]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on 2e680c60 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1151]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1152]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1153]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1154]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1155]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1156]]  token list[from                      add_token] :: <token : 6 [pop] data(text) : * num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1157]]  token list[from      safe_get_token(get token)] :: <token : 6 [pop] data(text) : * num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1158]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1159]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1160]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [pop] data(text) : * num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1161]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [seek] data(text) : * num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1162]]  token list[from                      pop_token] :: <token : 6 [seek] data(text) : * num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1163]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [seek] data(text) : * num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1164]]  token list[from                      pop_token] :: <token : 6 [seek] data(text) : * num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1165]]  token list[from      safe_get_token(move seek)] :: <token : 6 [pop] data(text) : * num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1166]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1167]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1168]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [pop] data(text) : * num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1169]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [seek] data(text) : * num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1170]]  token list[from                      pop_token] :: <token : 6 [seek] data(text) : * num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1171]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [seek] data(text) : * num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1172]]  token list[from                      pop_token] :: <token : 6 [seek] data(text) : * num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1173]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [seek] data(text) : * num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1174]]  token list[from                      pop_token] :: <token : 6 [seek] data(text) : * num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1175]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 26 on 2e680d70 num = 0> - <token : 6 [seek] data(text) : * num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1176]]  token list[from                      pop_token] :: <token : 6 [seek] data(text) : * num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1177]]  token list[from      safe_get_token(move seek)] :: <token : 6 [pop] data(text) : * num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1178]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1179]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1180]]  token list[from      safe_get_token(get token)] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1181]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1182]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1183]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1184]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1185]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1186]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1187]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1188]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1189]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1190]]  token list[from                      add_token] :: <token : 18 [pop] data(text) : a num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1191]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1192]]  token list[from                      add_token] :: <token : -18 [pop] data(statement_value) : 3 on 2e680df0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1193]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1194]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 3 on 2e680df0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1195]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1196]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 3 on 2e680df0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1197]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1198]]  token list[from                      add_token] :: <token : 19 [pop] data(text) : [ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1199]]  token list[from      safe_get_token(get token)] :: <token : 19 [pop] data(text) : [ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1200]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1201]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1202]]  token list[from      safe_get_token(get token)] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1203]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1204]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1205]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1206]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1207]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1208]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1209]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1210]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1211]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1212]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1213]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1214]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1215]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1216]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1217]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1218]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1219]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1220]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1221]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1222]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1223]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1224]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1225]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1226]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1227]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1228]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1229]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1230]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1231]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1232]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1233]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1234]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1235]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1236]]  token list[from                      add_token] :: <token : 54 [pop] data(text) : b num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1237]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1238]]  token list[from                      add_token] :: <token : -4 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1239]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1240]]  token list[from                      add_token] :: <token : -17 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1241]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1242]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1243]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1244]]  token list[from                      add_token] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1245]]  token list[from      safe_get_token(get token)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1246]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1247]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1248]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1249]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1250]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1251]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1252]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1253]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1254]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1255]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1256]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1257]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1258]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1259]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1260]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1261]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1262]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1263]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1264]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1265]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1266]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1267]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1268]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1269]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1270]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1271]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1272]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1273]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1274]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1275]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1276]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1277]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1278]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1279]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1280]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1281]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1282]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1283]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1284]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1285]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1286]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1287]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1288]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1289]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1290]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1291]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1292]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1293]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1294]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1295]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1296]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1297]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1298]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1299]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1300]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1301]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1302]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1303]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1304]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1305]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1306]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1307]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1308]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1309]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1310]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1311]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1312]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1313]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1314]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1315]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1316]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1317]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1318]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1319]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1320]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1321]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1322]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1323]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1324]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1325]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1326]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1327]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1328]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1329]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1330]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1331]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1332]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1333]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1334]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1335]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1336]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1337]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1338]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1339]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1340]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1341]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1342]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1343]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1344]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1345]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1346]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1347]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1348]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1349]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1350]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [pop] data(text) : ] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1351]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1352]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1353]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 24 on 2e680e70 num = 0> - <token : 20 [seek] data(text) : ] num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1354]]  token list[from                      pop_token] :: <token : 20 [seek] data(text) : ] num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1355]]  token list[from      safe_get_token(move seek)] :: <token : 20 [pop] data(text) : ] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1356]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1357]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1358]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1359]]  token list[from                      add_token] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1360]]  token list[from      safe_get_token(get token)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1361]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1362]]  token list[from                      add_token] :: <token : -34 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1363]]  token list[from                      add_token] :: <token : -34 data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1364]]  token list[from                     back_token] :: <token : -34 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1365]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1366]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1367]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1368]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1369]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1370]]  token list[from                      add_token] :: <token : -19 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1371]]  token list[from                      add_token] :: <token : -19 data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1372]]  token list[from                     back_token] :: <token : -19 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1373]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1374]]  token list[from                      add_token] :: <token : -20 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1375]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1376]]  token list[from                      add_token] :: <token : -21 [pop] data(statement_value) : 26 on 2e680f80 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1377]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1378]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1379]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1380]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1381]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1382]]  token list[from                      add_token] :: <token : -6 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1383]]  token list[from                      add_token] :: <token : -6 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1384]]  token list[from                     back_token] :: <token : -6 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1385]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1386]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1387]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1388]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1389]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1390]]  token list[from                      add_token] :: <token : -7 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1391]]  token list[from                      add_token] :: <token : -7 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1392]]  token list[from                     back_token] :: <token : -7 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1393]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1394]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1395]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1396]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1397]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1398]]  token list[from                      add_token] :: <token : -22 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1399]]  token list[from                      add_token] :: <token : -22 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1400]]  token list[from                     back_token] :: <token : -22 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1401]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1402]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1403]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1404]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1405]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1406]]  token list[from                      add_token] :: <token : -23 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1407]]  token list[from                      add_token] :: <token : -23 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1408]]  token list[from                     back_token] :: <token : -23 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1409]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1410]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1411]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1412]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1413]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1414]]  token list[from                      add_token] :: <token : -24 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1415]]  token list[from                      add_token] :: <token : -24 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1416]]  token list[from                     back_token] :: <token : -24 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1417]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1418]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1419]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1420]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1421]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1422]]  token list[from                      add_token] :: <token : -25 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1423]]  token list[from                      add_token] :: <token : -25 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1424]]  token list[from                     back_token] :: <token : -25 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1425]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1426]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1427]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1428]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1429]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1430]]  token list[from                      add_token] :: <token : -26 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1431]]  token list[from                      add_token] :: <token : -26 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1432]]  token list[from                     back_token] :: <token : -26 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1433]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1434]]  token list[from                      add_token] :: <token : -29 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1435]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1436]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1437]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1438]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1439]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1440]]  token list[from                      add_token] :: <token : -27 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1441]]  token list[from                      add_token] :: <token : -27 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1442]]  token list[from                     back_token] :: <token : -27 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1443]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1444]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1445]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1446]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1447]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1448]]  token list[from                      add_token] :: <token : -28 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1449]]  token list[from                      add_token] :: <token : -28 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1450]]  token list[from                     back_token] :: <token : -28 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1451]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1452]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1453]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1454]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1455]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1456]]  token list[from                      add_token] :: <token : -32 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1457]]  token list[from                      add_token] :: <token : -32 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1458]]  token list[from                     back_token] :: <token : -32 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1459]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1460]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1461]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1462]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1463]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1464]]  token list[from                      add_token] :: <token : -30 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1465]]  token list[from                      add_token] :: <token : -30 data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [pop] data(text) : 
+ num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1466]]  token list[from                     back_token] :: <token : -30 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1467]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1468]]  token list[from                      add_token] :: <token : -12 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <token : 2 [seek] data(text) : 
+ num = 1> - <NULL [index] num = 2> -  ||- END
+[debug][token : [1469]]  token list[from                      pop_token] :: <token : 2 [seek] data(text) : 
+ num = 0> - <NULL [index] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1470]]  token list[from      safe_get_token(move seek)] :: <token : 2 [pop] data(text) : 
+ num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1471]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1472]]  token list[from                      add_token] :: <token : -8 [pop] data(statement_value) : 2 on 2e680fe0 num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1473]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1474]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1475]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1476]]  token list[from                      add_token] :: <token : -3 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1477]]  token list[from      safe_get_token(get token)] :: <token : -3 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1478]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1479]]  token list[from                      add_token] :: <token : -3 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1480]]  token list[from                      pop_token] :: <NULL [index/seek] num = 0> - <NULL num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1481]]  token list[from                      add_token] :: <token : -9 [pop] num = 0> - <NULL [index/seek] num = 1> - <NULL num = 2> -  ||- END
+[debug][token : [1482]]  token list[from                      add_token] :: <token : -9 num = 0> - <token : -3 [pop] num = 1> - <NULL [index/seek] num = 2> -  ||- END
+[debug][token : [1483]]  token list[from                     back_token] :: <token : -9 [pop] num = 0> - <token : -3 [seek] num = 1> - <NULL [index] num = 2> -  ||- END

+ 1461 - 61
tokenINFO.log

@@ -1,84 +1,1484 @@
-[info][token : [  0]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [  1]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  0]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  1]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [  2]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [  3]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  3]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [  4]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [  5]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  5]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [  6]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [  7]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  7]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [  8]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [  9]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [  9]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 10]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 11]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 11]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 12]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 13]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 13]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 14]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 15]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 15]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 16]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 17]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 17]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 18]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 19]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 19]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 20]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 21]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 21]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 22]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 23]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 23]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 24]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 25]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 25]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 26]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 27]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 27]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 28]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 29]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 29]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 30]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 31]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 31]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 32]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 33]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 33]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 34]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 35]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 35]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 36]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[debug][tag 4]
-[info][token : [ 37]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 37]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 38]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 39]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 39]] :: <token :  18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 40]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 41]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 41]] :: <token : -18 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 42]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 43]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 43]] :: <token : -17 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 44]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[debug][tag 2]
-[info][token : [ 45]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 45]] :: <token : -34 num =   0> - <NULL        num =   1> -  ||- END
 [info][token : [ 46]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 47]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 48]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 49]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 50]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 51]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 52]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 53]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 54]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 55]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 56]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 57]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 58]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 59]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 60]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 61]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 62]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 63]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 64]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 65]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 66]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 67]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 68]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 69]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 70]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 71]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 72]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 73]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 74]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 75]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 76]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 77]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 78]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 79]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 80]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
-[info][token : [ 81]] :: <token :  54 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 47]] :: <token :  39 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 48]] :: <token :  39 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 49]] :: <NULL        num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 50]] :: <token : -34 num =   0> - <NULL        num =   1> -  ||- END
+[info][token : [ 51]] :: <token : -34 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 52]] :: <token : -34 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 53]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 54]] :: <token : -19 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 55]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 56]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 57]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 58]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 59]] :: <token : -19 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 60]] :: <token : -19 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 61]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 62]] :: <token : -20 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 63]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 64]] :: <token : -21 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 65]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 66]] :: <token :  -6 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 67]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 68]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 69]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 70]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 71]] :: <token :  -6 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 72]] :: <token :  -6 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 73]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 74]] :: <token :  -7 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 75]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 76]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 77]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 78]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 79]] :: <token :  -7 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 80]] :: <token :  -7 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 81]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 82]] :: <token : -22 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 83]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 84]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 85]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 86]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 87]] :: <token : -22 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 88]] :: <token : -22 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 89]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 90]] :: <token : -23 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 91]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 92]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 93]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 94]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 95]] :: <token : -23 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 96]] :: <token : -23 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 97]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 98]] :: <token : -24 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [ 99]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [100]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [101]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [102]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [103]] :: <token : -24 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [104]] :: <token : -24 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [105]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [106]] :: <token : -25 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [107]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [108]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [109]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [110]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [111]] :: <token : -25 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [112]] :: <token : -25 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [113]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [114]] :: <token : -26 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [115]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [116]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [117]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [118]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [119]] :: <token : -26 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [120]] :: <token : -26 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [121]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [122]] :: <token : -29 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [123]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [124]] :: <token : -27 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [125]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [126]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [127]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [128]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [129]] :: <token : -27 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [130]] :: <token : -27 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [131]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [132]] :: <token : -28 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [133]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [134]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [135]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [136]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [137]] :: <token : -28 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [138]] :: <token : -28 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [139]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [140]] :: <token : -32 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [141]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [142]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [143]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [144]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [145]] :: <token : -32 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [146]] :: <token : -32 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [147]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [148]] :: <token : -30 num =   0> - <token :  39 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [149]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [150]] :: <token :  39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [151]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [152]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [153]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [154]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [155]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [156]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [157]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [158]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [159]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [160]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [161]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [162]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [163]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [164]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [165]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [166]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [167]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [168]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [169]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [170]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [171]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [172]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [173]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [174]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [175]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [176]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [177]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [178]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [179]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [180]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [181]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [182]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [183]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [184]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [185]] :: <token :  11 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [186]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [187]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [188]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [189]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [190]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [191]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [192]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [193]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [194]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [195]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [196]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [197]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [198]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [199]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [200]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [201]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [202]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [203]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [204]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [205]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [206]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [207]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [208]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [209]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [210]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [211]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [212]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [213]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [214]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [215]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [216]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [217]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [218]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [219]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [220]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [221]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [222]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [223]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [224]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [225]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [226]] :: <token :  -4 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [227]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [228]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [229]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [230]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [231]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [232]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [233]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [234]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [235]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [236]] :: <token : -34 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [237]] :: <token : -34 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [238]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [239]] :: <token : -19 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [240]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [241]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [242]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [243]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [244]] :: <token : -19 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [245]] :: <token : -19 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [246]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [247]] :: <token : -20 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [248]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [249]] :: <token : -21 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [250]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [251]] :: <token :  -6 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [252]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [253]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [254]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [255]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [256]] :: <token :  -6 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [257]] :: <token :  -6 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [258]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [259]] :: <token :  -7 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [260]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [261]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [262]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [263]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [264]] :: <token :  -7 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [265]] :: <token :  -7 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [266]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [267]] :: <token : -22 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [268]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [269]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [270]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [271]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [272]] :: <token : -22 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [273]] :: <token : -22 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [274]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [275]] :: <token : -23 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [276]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [277]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [278]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [279]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [280]] :: <token : -23 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [281]] :: <token : -23 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [282]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [283]] :: <token : -24 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [284]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [285]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [286]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [287]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [288]] :: <token : -24 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [289]] :: <token : -24 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [290]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [291]] :: <token : -25 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [292]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [293]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [294]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [295]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [296]] :: <token : -25 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [297]] :: <token : -25 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [298]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [299]] :: <token : -26 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [300]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [301]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [302]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [303]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [304]] :: <token : -26 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [305]] :: <token : -26 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [306]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [307]] :: <token : -29 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [308]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [309]] :: <token : -27 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [310]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [311]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [312]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [313]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [314]] :: <token : -27 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [315]] :: <token : -27 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [316]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [317]] :: <token : -28 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [318]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [319]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [320]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [321]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [322]] :: <token : -28 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [323]] :: <token : -28 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [324]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [325]] :: <token : -32 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [326]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [327]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [328]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [329]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [330]] :: <token : -32 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [331]] :: <token : -32 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [332]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [333]] :: <token : -30 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [334]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [335]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [336]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [337]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [338]] :: <token : -30 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [339]] :: <token : -30 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [340]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [341]] :: <token : -12 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [342]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [343]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [344]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [345]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [346]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [347]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [348]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [349]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [350]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [351]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [352]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [353]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [354]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [355]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [356]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [357]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [358]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [359]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [360]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [361]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [362]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [363]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [364]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [365]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [366]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [367]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [368]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [369]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [370]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [371]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [372]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [373]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [374]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [375]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [376]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [377]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [378]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [379]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [380]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [381]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [382]] :: <token :  -4 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [383]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [384]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [385]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [386]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [387]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [388]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [389]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [390]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [391]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [392]] :: <token : -34 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [393]] :: <token : -34 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [394]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [395]] :: <token : -19 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [396]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [397]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [398]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [399]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [400]] :: <token : -19 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [401]] :: <token : -19 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [402]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [403]] :: <token : -20 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [404]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [405]] :: <token : -21 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [406]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [407]] :: <token :  -6 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [408]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [409]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [410]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [411]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [412]] :: <token :  -6 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [413]] :: <token :  -6 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [414]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [415]] :: <token :  -7 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [416]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [417]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [418]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [419]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [420]] :: <token :  -7 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [421]] :: <token :  -7 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [422]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [423]] :: <token : -22 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [424]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [425]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [426]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [427]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [428]] :: <token : -22 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [429]] :: <token : -22 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [430]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [431]] :: <token : -23 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [432]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [433]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [434]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [435]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [436]] :: <token : -23 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [437]] :: <token : -23 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [438]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [439]] :: <token : -24 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [440]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [441]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [442]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [443]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [444]] :: <token : -24 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [445]] :: <token : -24 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [446]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [447]] :: <token : -25 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [448]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [449]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [450]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [451]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [452]] :: <token : -25 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [453]] :: <token : -25 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [454]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [455]] :: <token : -26 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [456]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [457]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [458]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [459]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [460]] :: <token : -26 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [461]] :: <token : -26 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [462]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [463]] :: <token : -29 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [464]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [465]] :: <token : -27 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [466]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [467]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [468]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [469]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [470]] :: <token : -27 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [471]] :: <token : -27 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [472]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [473]] :: <token : -28 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [474]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [475]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [476]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [477]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [478]] :: <token : -28 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [479]] :: <token : -28 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [480]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [481]] :: <token : -32 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [482]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [483]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [484]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [485]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [486]] :: <token : -32 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [487]] :: <token : -32 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [488]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [489]] :: <token : -30 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [490]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [491]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [492]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [493]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [494]] :: <token : -30 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [495]] :: <token : -30 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [496]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [497]] :: <token : -12 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [498]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [499]] :: <token : -33 num =   0> - <token :  41 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [500]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [501]] :: <token :  41 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [502]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [503]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [504]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [505]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [506]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [507]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [508]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [509]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [510]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [511]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [512]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [513]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [514]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [515]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [516]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [517]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [518]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [519]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [520]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [521]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [522]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [523]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [524]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [525]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [526]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [527]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [528]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [529]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [530]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [531]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [532]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [533]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [534]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [535]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [536]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [537]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [538]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [539]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [540]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [541]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [542]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [543]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [544]] :: <token :  -4 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [545]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [546]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [547]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [548]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [549]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [550]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [551]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [552]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [553]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [554]] :: <token : -34 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [555]] :: <token : -34 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [556]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [557]] :: <token : -19 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [558]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [559]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [560]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [561]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [562]] :: <token : -19 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [563]] :: <token : -19 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [564]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [565]] :: <token : -20 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [566]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [567]] :: <token : -21 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [568]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [569]] :: <token :  -6 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [570]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [571]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [572]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [573]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [574]] :: <token :  -6 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [575]] :: <token :  -6 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [576]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [577]] :: <token :  -7 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [578]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [579]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [580]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [581]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [582]] :: <token :  -7 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [583]] :: <token :  -7 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [584]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [585]] :: <token : -22 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [586]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [587]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [588]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [589]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [590]] :: <token : -22 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [591]] :: <token : -22 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [592]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [593]] :: <token : -23 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [594]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [595]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [596]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [597]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [598]] :: <token : -23 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [599]] :: <token : -23 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [600]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [601]] :: <token : -24 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [602]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [603]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [604]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [605]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [606]] :: <token : -24 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [607]] :: <token : -24 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [608]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [609]] :: <token : -25 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [610]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [611]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [612]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [613]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [614]] :: <token : -25 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [615]] :: <token : -25 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [616]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [617]] :: <token : -26 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [618]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [619]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [620]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [621]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [622]] :: <token : -26 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [623]] :: <token : -26 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [624]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [625]] :: <token : -29 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [626]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [627]] :: <token : -27 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [628]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [629]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [630]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [631]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [632]] :: <token : -27 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [633]] :: <token : -27 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [634]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [635]] :: <token : -28 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [636]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [637]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [638]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [639]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [640]] :: <token : -28 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [641]] :: <token : -28 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [642]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [643]] :: <token : -32 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [644]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [645]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [646]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [647]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [648]] :: <token : -32 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [649]] :: <token : -32 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [650]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [651]] :: <token : -30 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [652]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [653]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [654]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [655]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [656]] :: <token : -30 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [657]] :: <token : -30 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [658]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [659]] :: <token : -12 num =   0> - <token :  16 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [660]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [661]] :: <token :  16 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [662]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [663]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [664]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [665]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [666]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [667]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [668]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [669]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [670]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [671]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [672]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [673]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [674]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [675]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [676]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [677]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [678]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [679]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [680]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [681]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [682]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [683]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [684]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [685]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [686]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [687]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [688]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [689]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [690]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [691]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [692]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [693]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [694]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [695]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [696]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [697]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [698]] :: <token :   0 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [699]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [700]] :: <token :  -4 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [701]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [702]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [703]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [704]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [705]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [706]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [707]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [708]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [709]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [710]] :: <token : -34 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [711]] :: <token : -34 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [712]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [713]] :: <token : -19 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [714]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [715]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [716]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [717]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [718]] :: <token : -19 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [719]] :: <token : -19 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [720]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [721]] :: <token : -20 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [722]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [723]] :: <token : -21 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [724]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [725]] :: <token :  -6 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [726]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [727]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [728]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [729]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [730]] :: <token :  -6 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [731]] :: <token :  -6 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [732]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [733]] :: <token :  -7 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [734]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [735]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [736]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [737]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [738]] :: <token :  -7 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [739]] :: <token :  -7 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [740]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [741]] :: <token : -22 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [742]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [743]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [744]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [745]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [746]] :: <token : -22 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [747]] :: <token : -22 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [748]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [749]] :: <token : -23 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [750]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [751]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [752]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [753]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [754]] :: <token : -23 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [755]] :: <token : -23 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [756]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [757]] :: <token : -24 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [758]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [759]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [760]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [761]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [762]] :: <token : -24 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [763]] :: <token : -24 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [764]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [765]] :: <token : -25 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [766]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [767]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [768]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [769]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [770]] :: <token : -25 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [771]] :: <token : -25 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [772]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [773]] :: <token : -26 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [774]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [775]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [776]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [777]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [778]] :: <token : -26 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [779]] :: <token : -26 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [780]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [781]] :: <token : -29 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [782]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [783]] :: <token : -27 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [784]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [785]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [786]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [787]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [788]] :: <token : -27 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [789]] :: <token : -27 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [790]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [791]] :: <token : -28 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [792]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [793]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [794]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [795]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [796]] :: <token : -28 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [797]] :: <token : -28 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [798]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [799]] :: <token : -32 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [800]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [801]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [802]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [803]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [804]] :: <token : -32 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [805]] :: <token : -32 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [806]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [807]] :: <token : -30 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [808]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [809]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [810]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [811]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [812]] :: <token : -30 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [813]] :: <token : -30 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [814]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [815]] :: <token : -12 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [816]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [817]] :: <token : -33 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [818]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [819]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [820]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [821]] :: <token : -33 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [822]] :: <token : -33 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [823]] :: <token : -33 num =   0> - <token :  12 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [824]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [825]] :: <token :  12 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [826]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [827]] :: <token : -39 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [828]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [829]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [830]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [831]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [832]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [833]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [834]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [835]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [836]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [837]] :: <token : -34 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [838]] :: <token : -34 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [839]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [840]] :: <token : -19 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [841]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [842]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [843]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [844]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [845]] :: <token : -19 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [846]] :: <token : -19 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [847]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [848]] :: <token : -20 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [849]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [850]] :: <token : -21 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [851]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [852]] :: <token :  -6 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [853]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [854]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [855]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [856]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [857]] :: <token :  -6 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [858]] :: <token :  -6 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [859]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [860]] :: <token :  -7 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [861]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [862]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [863]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [864]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [865]] :: <token :  -7 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [866]] :: <token :  -7 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [867]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [868]] :: <token : -22 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [869]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [870]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [871]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [872]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [873]] :: <token : -22 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [874]] :: <token : -22 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [875]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [876]] :: <token : -23 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [877]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [878]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [879]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [880]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [881]] :: <token : -23 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [882]] :: <token : -23 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [883]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [884]] :: <token : -24 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [885]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [886]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [887]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [888]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [889]] :: <token : -24 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [890]] :: <token : -24 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [891]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [892]] :: <token : -25 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [893]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [894]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [895]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [896]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [897]] :: <token : -25 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [898]] :: <token : -25 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [899]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [900]] :: <token : -26 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [901]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [902]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [903]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [904]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [905]] :: <token : -26 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [906]] :: <token : -26 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [907]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [908]] :: <token : -29 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [909]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [910]] :: <token : -27 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [911]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [912]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [913]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [914]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [915]] :: <token : -27 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [916]] :: <token : -27 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [917]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [918]] :: <token : -28 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [919]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [920]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [921]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [922]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [923]] :: <token : -28 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [924]] :: <token : -28 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [925]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [926]] :: <token : -32 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [927]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [928]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [929]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [930]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [931]] :: <token : -32 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [932]] :: <token : -32 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [933]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [934]] :: <token : -30 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [935]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [936]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [937]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [938]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [939]] :: <token : -30 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [940]] :: <token : -30 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [941]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [942]] :: <token : -12 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [943]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [944]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [945]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [946]] :: <token :  -8 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [947]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [948]] :: <token :  -9 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [949]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [950]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [951]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [952]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [953]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [954]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [955]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [956]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [957]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [958]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [959]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [960]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [961]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [962]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [963]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [964]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [965]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [966]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [967]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [968]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [969]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [970]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [971]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [972]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [973]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [974]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [975]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [976]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [977]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [978]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [979]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [980]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [981]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [982]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [983]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [984]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [985]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [986]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [987]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [988]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [989]] :: <token : -18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [990]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [991]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [992]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [993]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [994]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [995]] :: <token :  19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [996]] :: <token :  19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [997]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [998]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [999]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1000]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1001]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1002]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1003]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1004]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1005]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1006]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1007]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1008]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1009]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1010]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1011]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1012]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1013]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1014]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1015]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1016]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1017]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1018]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1019]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1020]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1021]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1022]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1023]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1024]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1025]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1026]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1027]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1028]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1029]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1030]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1031]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1032]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1033]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1034]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1035]] :: <token :  -4 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1036]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1037]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1038]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1039]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1040]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1041]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1042]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1043]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1044]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1045]] :: <token : -34 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1046]] :: <token : -34 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1047]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1048]] :: <token : -19 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1049]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1050]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1051]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1052]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1053]] :: <token : -19 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1054]] :: <token : -19 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1055]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1056]] :: <token : -20 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1057]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1058]] :: <token : -21 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1059]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1060]] :: <token :  -6 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1061]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1062]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1063]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1064]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1065]] :: <token :  -6 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1066]] :: <token :  -6 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1067]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1068]] :: <token :  -7 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1069]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1070]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1071]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1072]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1073]] :: <token :  -7 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1074]] :: <token :  -7 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1075]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1076]] :: <token : -22 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1077]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1078]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1079]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1080]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1081]] :: <token : -22 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1082]] :: <token : -22 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1083]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1084]] :: <token : -23 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1085]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1086]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1087]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1088]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1089]] :: <token : -23 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1090]] :: <token : -23 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1091]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1092]] :: <token : -24 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1093]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1094]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1095]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1096]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1097]] :: <token : -24 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1098]] :: <token : -24 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1099]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1100]] :: <token : -25 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1101]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1102]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1103]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1104]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1105]] :: <token : -25 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1106]] :: <token : -25 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1107]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1108]] :: <token : -26 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1109]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1110]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1111]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1112]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1113]] :: <token : -26 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1114]] :: <token : -26 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1115]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1116]] :: <token : -29 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1117]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1118]] :: <token : -27 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1119]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1120]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1121]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1122]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1123]] :: <token : -27 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1124]] :: <token : -27 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1125]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1126]] :: <token : -28 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1127]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1128]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1129]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1130]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1131]] :: <token : -28 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1132]] :: <token : -28 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1133]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1134]] :: <token : -32 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1135]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1136]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1137]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1138]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1139]] :: <token : -32 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1140]] :: <token : -32 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1141]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1142]] :: <token : -30 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1143]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1144]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1145]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1146]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1147]] :: <token : -30 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1148]] :: <token : -30 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1149]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1150]] :: <token : -12 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1151]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1152]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1153]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1154]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1155]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1156]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1157]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1158]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1159]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1160]] :: <token : -34 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1161]] :: <token : -34 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1162]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1163]] :: <token : -19 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1164]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1165]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1166]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1167]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1168]] :: <token : -19 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1169]] :: <token : -19 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1170]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1171]] :: <token : -20 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1172]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1173]] :: <token : -21 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1174]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1175]] :: <token :  -6 num =   0> - <token :   6 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1176]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1177]] :: <token :   6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1178]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1179]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1180]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1181]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1182]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1183]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1184]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1185]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1186]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1187]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1188]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1189]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1190]] :: <token :  18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1191]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1192]] :: <token : -18 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1193]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1194]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1195]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1196]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1197]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1198]] :: <token :  19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1199]] :: <token :  19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1200]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1201]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1202]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1203]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1204]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1205]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1206]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1207]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1208]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1209]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1210]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1211]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1212]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1213]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1214]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1215]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1216]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1217]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1218]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1219]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1220]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1221]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1222]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1223]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1224]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1225]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1226]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1227]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1228]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1229]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1230]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1231]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1232]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1233]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1234]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1235]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1236]] :: <token :  54 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1237]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1238]] :: <token :  -4 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1239]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1240]] :: <token : -17 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1241]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1242]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1243]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1244]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1245]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1246]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1247]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1248]] :: <token : -34 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1249]] :: <token : -34 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1250]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1251]] :: <token : -19 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1252]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1253]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1254]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1255]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1256]] :: <token : -19 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1257]] :: <token : -19 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1258]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1259]] :: <token : -20 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1260]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1261]] :: <token : -21 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1262]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1263]] :: <token :  -6 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1264]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1265]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1266]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1267]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1268]] :: <token :  -6 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1269]] :: <token :  -6 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1270]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1271]] :: <token :  -7 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1272]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1273]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1274]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1275]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1276]] :: <token :  -7 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1277]] :: <token :  -7 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1278]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1279]] :: <token : -22 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1280]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1281]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1282]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1283]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1284]] :: <token : -22 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1285]] :: <token : -22 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1286]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1287]] :: <token : -23 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1288]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1289]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1290]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1291]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1292]] :: <token : -23 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1293]] :: <token : -23 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1294]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1295]] :: <token : -24 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1296]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1297]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1298]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1299]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1300]] :: <token : -24 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1301]] :: <token : -24 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1302]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1303]] :: <token : -25 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1304]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1305]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1306]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1307]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1308]] :: <token : -25 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1309]] :: <token : -25 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1310]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1311]] :: <token : -26 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1312]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1313]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1314]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1315]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1316]] :: <token : -26 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1317]] :: <token : -26 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1318]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1319]] :: <token : -29 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1320]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1321]] :: <token : -27 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1322]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1323]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1324]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1325]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1326]] :: <token : -27 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1327]] :: <token : -27 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1328]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1329]] :: <token : -28 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1330]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1331]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1332]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1333]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1334]] :: <token : -28 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1335]] :: <token : -28 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1336]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1337]] :: <token : -32 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1338]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1339]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1340]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1341]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1342]] :: <token : -32 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1343]] :: <token : -32 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1344]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1345]] :: <token : -30 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1346]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1347]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1348]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1349]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1350]] :: <token : -30 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1351]] :: <token : -30 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1352]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1353]] :: <token : -12 num =   0> - <token :  20 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1354]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1355]] :: <token :  20 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1356]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1357]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1358]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1359]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1360]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1361]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1362]] :: <token : -34 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1363]] :: <token : -34 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1364]] :: <token : -34 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1365]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1366]] :: <token : -19 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1367]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1368]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1369]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1370]] :: <token : -19 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1371]] :: <token : -19 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1372]] :: <token : -19 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1373]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1374]] :: <token : -20 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1375]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1376]] :: <token : -21 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1377]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1378]] :: <token :  -6 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1379]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1380]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1381]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1382]] :: <token :  -6 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1383]] :: <token :  -6 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1384]] :: <token :  -6 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1385]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1386]] :: <token :  -7 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1387]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1388]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1389]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1390]] :: <token :  -7 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1391]] :: <token :  -7 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1392]] :: <token :  -7 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1393]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1394]] :: <token : -22 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1395]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1396]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1397]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1398]] :: <token : -22 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1399]] :: <token : -22 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1400]] :: <token : -22 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1401]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1402]] :: <token : -23 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1403]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1404]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1405]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1406]] :: <token : -23 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1407]] :: <token : -23 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1408]] :: <token : -23 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1409]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1410]] :: <token : -24 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1411]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1412]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1413]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1414]] :: <token : -24 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1415]] :: <token : -24 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1416]] :: <token : -24 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1417]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1418]] :: <token : -25 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1419]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1420]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1421]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1422]] :: <token : -25 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1423]] :: <token : -25 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1424]] :: <token : -25 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1425]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1426]] :: <token : -26 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1427]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1428]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1429]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1430]] :: <token : -26 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1431]] :: <token : -26 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1432]] :: <token : -26 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1433]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1434]] :: <token : -29 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1435]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1436]] :: <token : -27 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1437]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1438]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1439]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1440]] :: <token : -27 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1441]] :: <token : -27 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1442]] :: <token : -27 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1443]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1444]] :: <token : -28 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1445]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1446]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1447]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1448]] :: <token : -28 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1449]] :: <token : -28 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1450]] :: <token : -28 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1451]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1452]] :: <token : -32 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1453]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1454]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1455]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1456]] :: <token : -32 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1457]] :: <token : -32 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1458]] :: <token : -32 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1459]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1460]] :: <token : -30 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1461]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1462]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1463]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1464]] :: <token : -30 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1465]] :: <token : -30 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1466]] :: <token : -30 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1467]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1468]] :: <token : -12 num =   0> - <token :   2 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1469]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1470]] :: <token :   2 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1471]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1472]] :: <token :  -8 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1473]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1474]] :: <token :  -9 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1475]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1476]] :: <token :  -3 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1477]] :: <token :  -3 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1478]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1479]] :: <token :  -3 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1480]] :: <NULL        num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1481]] :: <token :  -9 num =   0> - <NULL        num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1482]] :: <token :  -9 num =   0> - <token :  -3 num =   1> - <NULL        num =   2> -  ||- END
+[info][token : [1483]] :: <token :  -9 num =   0> - <token :  -3 num =   1> - <NULL        num =   2> -  ||- END

Kaikkia tiedostoja ei voida näyttää, sillä liian monta tiedostoa muuttui tässä diffissä