]> andersk Git - splint.git/commitdiff
Removed test/temp from CVS control.
authorevans1629 <evans1629>
Mon, 24 Sep 2001 21:18:32 +0000 (21:18 +0000)
committerevans1629 <evans1629>
Mon, 24 Sep 2001 21:18:32 +0000 (21:18 +0000)
36 files changed:
test/temp/Call: [deleted file]
test/temp/alias3.c [deleted file]
test/temp/alias3.h [deleted file]
test/temp/alias3.lcl [deleted file]
test/temp/alias3.lcs [deleted file]
test/temp/alias3.lh [deleted file]
test/temp/bool.h [deleted file]
test/temp/case.c [deleted file]
test/temp/cases.c [deleted file]
test/temp/csyntax16.c [deleted file]
test/temp/employee.c [deleted file]
test/temp/employee.lcl [deleted file]
test/temp/employee.lcs [deleted file]
test/temp/employee.lh [deleted file]
test/temp/enumadd.c [deleted file]
test/temp/freearray.c [deleted file]
test/temp/freearray.expect [deleted file]
test/temp/gethostbyname.c [deleted file]
test/temp/malloc [deleted file]
test/temp/names.c [deleted file]
test/temp/onlyret.c [deleted file]
test/temp/outglob.c [deleted file]
test/temp/outglob.expect [deleted file]
test/temp/outglob.lcl [deleted file]
test/temp/outglob.lcs [deleted file]
test/temp/pmalloc.c [deleted file]
test/temp/returned.c [deleted file]
test/temp/stack.c [deleted file]
test/temp/test.c [deleted file]
test/temp/testfile [deleted file]
test/temp/ud2.c [deleted file]
test/temp/union.c [deleted file]
test/temp/unrecog.c [deleted file]
test/temp/void.c [deleted file]
test/temp/yeates [deleted file]
test/temp/yeates.c [deleted file]

diff --git a/test/temp/Call: b/test/temp/Call:
deleted file mode 100644 (file)
index f91801c..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-             total       used       free     shared    buffers     cached
-Mem:        255156     173780      81376          0      22864      60600
--/+ buffers/cache:      90316     164840
-Swap:       265064          0     265064
diff --git a/test/temp/alias3.c b/test/temp/alias3.c
deleted file mode 100644 (file)
index 2417ccc..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
-** tests aliasing of arrays, structs and unions
-*/
-
-# include "alias3.lh"
-
-st gst;
-ut *gu;
-
-void model (int ia[])
-{
-  int *ip;
-
-  ip = &(ia[6]);
-  *ip = 3;
-  gst.a = 3; /* 1. Suspect modification of gst.a */
-  gu->a = 5; /* 2. Suspect modification of gu->a */
-}
-
-void modst (st s1)
-{
-  s1.a = 3;
-  *(s1.b) = 6;
-}
-
-void modu (ut *u)
-{
-  u->a = 5;
-}
-
-int f (int ia[], st s1, ut *u1)
-{
-  int *ip;
-  st   slocal;
-  ut   *ul;
-
-  ip = &(ia[3]);
-  *ip = 7; /* modifies ia[3] */
-
-  ip = &(ia[*ip]);
-
-  *ip = 8; /* modifies ia[?] */
-
-  model(ia); /* modifies ia[6] */
-  ip = ia;
-  model(ip); /* modifies ia[6] */
-
-  s1.a = 3;    /* okay */
-  *(s1.b) = 7; /* modifies *(s1.b) */
-  
-  slocal = s1;     /* okay (sl is NOT an alias for s1) */
-  modst(slocal);   /* was: does not modify anything --- structure is passed by value */
-               /* NOT TRUE: does modify slocal since *s1.b is the same reference */
-  slocal.a = 3;    /* okay */
-  ip = s1.b;   /* okay, ip aliases s1.b */
-  *(s1.b) = 3; /* modifies s1.b */
-  *ip = 6;     /* modifies s1.b */
-  *(slocal.b) = 3; /* okay */
-
-  ul = u1;     /* ul aliases u1 */
-  modu(ul);    /* okay */
-  ul->a = 3;   /* modifies u1->a */
-  slocal = ul->s;  /* okay */
-  slocal.a = 3;    /* okay */
-  *(slocal.b) = 6; /* modifies *(u1->s.b) through alias */
-  return 5;
-}
diff --git a/test/temp/alias3.h b/test/temp/alias3.h
deleted file mode 100644 (file)
index 65dfe26..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Output from LCLint 2.6beta */
-# include "bool.h"
-
-
-# ifndef EXPOSED_TYPE_st
-typedef struct {
-    int a;
-    int *b;
-    } st;
-# endif
-
-
-# ifndef EXPOSED_TYPE_ut
-typedef union {
-    int a;
-    st s;
-    st *t;
-    int **c;
-    } ut;
-# endif
-
-extern st  gst;
-extern ut  *gu;
-extern int f (int  /* ia */[], st  /* s1 */, ut * /* u1 */);
-extern void model (int  /* ia */[]);
-extern void modst (st  /* s1 */);
-extern void modu (ut * /* u */);
diff --git a/test/temp/alias3.lcl b/test/temp/alias3.lcl
deleted file mode 100644 (file)
index 92f1b27..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-typedef struct { int a; int *b; } st;
-typedef union  { int a; st s; st *t; int **c; } ut;
-
-st gst;
-ut *gu;
-
-int f (int ia[], st s1, ut *u1) st gst; ut *gu; { } 
-
-void model (int ia[]) st gst; ut *gu; { modifies ia[6]; }
-
-void modst (st s1) { modifies *s1.b; }
-
-void modu (ut *u)  { modifies *u; }
\ No newline at end of file
diff --git a/test/temp/alias3.lcs b/test/temp/alias3.lcs
deleted file mode 100644 (file)
index bfbca58..0000000
+++ /dev/null
@@ -1,226 +0,0 @@
-%PASSED Output from LCLint 2.9a
-%LCLimports 
-%LCLSortTable
-%LCLsort bool immutable nil nil
-%LCLsort Bool synonym bool nil
-%LCLsort int primitive nil nil
-%LCLsort char primitive nil nil
-%LCLsort void primitive nil nil
-%LCLsort _char_Obj obj char nil
-%LCLsort __char_Obj_Ptr ptr _char_Obj nil
-%LCLsort __char_Obj_Arr arr _char_Obj nil
-%LCLsort _char_Vec vec char __char_Obj_Arr
-%LCLsort float primitive nil nil
-%LCLsort double primitive nil nil
-%LCLsort _salias30s_Struct str salias30s nil
-%LCLsort b strMem ___int_Obj_Ptr_Obj nil
-%LCLsort a strMem _int_Obj nil
-%LCLsort strEnd nil nil nil
-%LCLsort _int_Obj obj int nil
-%LCLsort __int_Obj_Ptr ptr _int_Obj nil
-%LCLsort __int_Obj_Arr arr _int_Obj nil
-%LCLsort _int_Vec vec int __int_Obj_Arr
-%LCLsort ___int_Obj_Ptr_Obj obj __int_Obj_Ptr nil
-%LCLsort _salias30s_Struct_Tuple tup _salias30s_Struct nil
-%LCLsort __salias30s_Struct_Ptr ptr _salias30s_Struct nil
-%LCLsort __salias30s_Struct_Arr arr _salias30s_Struct nil
-%LCLsort __salias30s_Struct_Tuple_Vec vec _salias30s_Struct_Tuple __salias30s_Struct_Arr
-%LCLsort _st synonym _salias30s_Struct nil
-%LCLsort _ualias30u_Union union ualias30u nil
-%LCLsort c unionMem _____int_Obj_Ptr_Obj_Ptr_Obj nil
-%LCLsort t unionMem ___salias30s_Struct_Ptr_Obj nil
-%LCLsort s unionMem _salias30s_Struct nil
-%LCLsort a unionMem _int_Obj nil
-%LCLsort unionEnd nil nil nil
-%LCLsort ___salias30s_Struct_Ptr_Obj obj __salias30s_Struct_Ptr nil
-%LCLsort ____int_Obj_Ptr_Obj_Ptr ptr ___int_Obj_Ptr_Obj nil
-%LCLsort ____int_Obj_Ptr_Obj_Arr arr ___int_Obj_Ptr_Obj nil
-%LCLsort ___int_Obj_Ptr_Vec vec __int_Obj_Ptr ____int_Obj_Ptr_Obj_Arr
-%LCLsort _____int_Obj_Ptr_Obj_Ptr_Obj obj ____int_Obj_Ptr_Obj_Ptr nil
-%LCLsort _ualias30u_Union_UnionVal unionval _ualias30u_Union nil
-%LCLsort __ualias30u_Union_Ptr ptr _ualias30u_Union nil
-%LCLsort __ualias30u_Union_Arr arr _ualias30u_Union nil
-%LCLsort __ualias30u_Union_UnionVal_Vec vec _ualias30u_Union_UnionVal __ualias30u_Union_Arr
-%LCLsort _ut synonym _ualias30u_Union nil
-%LCLsort ___ualias30u_Union_Ptr_Obj obj __ualias30u_Union_Ptr nil
-%LCLSortTableEnd
-%LCLSymbolTable
-%LCLop max :int, int -> int
-%LCLop 0 : -> int
-%LCLop 0 : -> double
-%LCLop 1 : -> int
-%LCLop 1 : -> double
-%LCLop __ < __  :int, int -> bool
-%LCLop __ < __  :double, double -> bool
-%LCLop if __ then __ else __  :bool, bool, bool -> bool
-%LCLop if __ then __ else __  :bool, int, int -> int
-%LCLop if __ then __ else __  :bool, double, double -> double
-%LCLop if __ then __ else __  :bool, _char_Vec, _char_Vec -> _char_Vec
-%LCLop if __ then __ else __  :bool, char, char -> char
-%LCLop empty : -> _char_Vec
-%LCLop __ > __  :int, int -> bool
-%LCLop __ > __  :double, double -> bool
-%LCLop count :char, _char_Vec -> int
-%LCLop head :_char_Vec -> char
-%LCLop __ \inv :double -> double
-%LCLop init :_char_Vec -> _char_Vec
-%LCLop isEmpty :_char_Vec -> bool
-%LCLop last :_char_Vec -> char
-%LCLop len :_char_Vec -> int
-%LCLop prefix :_char_Vec, int -> _char_Vec
-%LCLop __ / __  :double, double -> double
-%LCLop removePrefix :_char_Vec, int -> _char_Vec
-%LCLop __ \implies __  :bool, bool -> bool
-%LCLop substring :_char_Vec, int, int -> _char_Vec
-%LCLop __ || __  :_char_Vec, _char_Vec -> _char_Vec
-%LCLop tail :_char_Vec -> _char_Vec
-%LCLop __ \in __  :char, _char_Vec -> bool
-%LCLop nullTerminated :_char_Vec -> bool
-%LCLop throughNull :_char_Vec -> _char_Vec
-%LCLop sameStr :_char_Vec, _char_Vec -> bool
-%LCLop lenStr :_char_Vec -> int
-%LCLop times10plus :int, int -> int
-%LCLop plus1 :int -> int
-%LCLop 2 : -> int
-%LCLop 3 : -> int
-%LCLop 4 : -> int
-%LCLop 5 : -> int
-%LCLop 6 : -> int
-%LCLop 6 : -> double
-%LCLop 7 : -> int
-%LCLop 8 : -> int
-%LCLop 9 : -> int
-%LCLop __ * __  :int, int -> int
-%LCLop __ * __  :double, double -> double
-%LCLop true : -> bool
-%LCLop false : -> bool
-%LCLop __ \and __  :bool, bool -> bool
-%LCLop __ \or __  :bool, bool -> bool
-%LCLop __ \eq __  :bool, bool -> bool
-%LCLop __ \eq __  :int, int -> bool
-%LCLop __ \eq __  :double, double -> bool
-%LCLop __ \eq __  :_char_Vec, _char_Vec -> bool
-%LCLop __ \eq __  :char, char -> bool
-%LCLop \not __  :bool -> bool
-%LCLop __ \neq __  :bool, bool -> bool
-%LCLop __ \neq __  :int, int -> bool
-%LCLop __ \neq __  :double, double -> bool
-%LCLop __ \neq __  :_char_Vec, _char_Vec -> bool
-%LCLop __ \neq __  :char, char -> bool
-%LCLop { __ } :char -> _char_Vec
-%LCLop __ \select a :_salias30s_Struct_Tuple -> int
-%LCLop __ \select a :_salias30s_Struct -> _int_Obj
-%LCLop __ \select a :_ualias30u_Union_UnionVal -> int
-%LCLop __ \select a :_ualias30u_Union -> _int_Obj
-%LCLop [__, __] :__int_Obj_Ptr, int -> _salias30s_Struct_Tuple
-%LCLop __ \select b :_salias30s_Struct_Tuple -> __int_Obj_Ptr
-%LCLop __ \select b :_salias30s_Struct -> ___int_Obj_Ptr_Obj
-%LCLop __ |- __  :_char_Vec, char -> _char_Vec
-%LCLop __ [] :__char_Obj_Ptr -> __char_Obj_Arr
-%LCLop __ [] :__int_Obj_Ptr -> __int_Obj_Arr
-%LCLop __ [] :__salias30s_Struct_Ptr -> __salias30s_Struct_Arr
-%LCLop __ [] :____int_Obj_Ptr_Obj_Ptr -> ____int_Obj_Ptr_Obj_Arr
-%LCLop __ [] :__ualias30u_Union_Ptr -> __ualias30u_Union_Arr
-%LCLop __ \field_arrow a :__salias30s_Struct_Ptr -> _int_Obj
-%LCLop __ \field_arrow a :__ualias30u_Union_Ptr -> int
-%LCLop __ \field_arrow a :__ualias30u_Union_Ptr -> _int_Obj
-%LCLop __ \field_arrow b :__salias30s_Struct_Ptr -> ___int_Obj_Ptr_Obj
-%LCLop __ -| __  :char, _char_Vec -> _char_Vec
-%LCLop __ [__] :_char_Vec, int -> char
-%LCLop __ [__] :__char_Obj_Arr, int -> _char_Obj
-%LCLop __ [__] :_int_Vec, int -> int
-%LCLop __ [__] :__int_Obj_Arr, int -> _int_Obj
-%LCLop __ [__] :__salias30s_Struct_Tuple_Vec, int -> _salias30s_Struct_Tuple
-%LCLop __ [__] :__salias30s_Struct_Arr, int -> _salias30s_Struct
-%LCLop __ [__] :___int_Obj_Ptr_Vec, int -> __int_Obj_Ptr
-%LCLop __ [__] :____int_Obj_Ptr_Obj_Arr, int -> ___int_Obj_Ptr_Obj
-%LCLop __ [__] :__ualias30u_Union_UnionVal_Vec, int -> _ualias30u_Union_UnionVal
-%LCLop __ [__] :__ualias30u_Union_Arr, int -> _ualias30u_Union
-%LCLop __ \leq __  :int, int -> bool
-%LCLop __ \leq __  :double, double -> bool
-%LCLop __ \geq __  :int, int -> bool
-%LCLop __ \geq __  :double, double -> bool
-%LCLop null : -> char
-%LCLop __ \select s :_ualias30u_Union_UnionVal -> _salias30s_Struct_Tuple
-%LCLop __ \select s :_ualias30u_Union -> _salias30s_Struct
-%LCLop __ \select t :_ualias30u_Union_UnionVal -> __salias30s_Struct_Ptr
-%LCLop __ \select t :_ualias30u_Union -> ___salias30s_Struct_Ptr_Obj
-%LCLop __ \field_arrow s :__ualias30u_Union_Ptr -> _salias30s_Struct_Tuple
-%LCLop __ \field_arrow s :__ualias30u_Union_Ptr -> _salias30s_Struct
-%LCLop __ \select c :_ualias30u_Union_UnionVal -> ____int_Obj_Ptr_Obj_Ptr
-%LCLop __ \select c :_ualias30u_Union -> _____int_Obj_Ptr_Obj_Ptr_Obj
-%LCLop __ \field_arrow t :__ualias30u_Union_Ptr -> __salias30s_Struct_Ptr
-%LCLop __ \field_arrow t :__ualias30u_Union_Ptr -> ___salias30s_Struct_Ptr_Obj
-%LCLop __ \field_arrow c :__ualias30u_Union_Ptr -> ____int_Obj_Ptr_Obj_Ptr
-%LCLop __ \field_arrow c :__ualias30u_Union_Ptr -> _____int_Obj_Ptr_Obj_Ptr_Obj
-%LCLop NIL : -> __char_Obj_Ptr
-%LCLop NIL : -> __int_Obj_Ptr
-%LCLop NIL : -> __salias30s_Struct_Ptr
-%LCLop NIL : -> ____int_Obj_Ptr_Obj_Ptr
-%LCLop NIL : -> __ualias30u_Union_Ptr
-%LCLop - __  :int -> int
-%LCLop - __  :double -> double
-%LCLop __ + __  :__char_Obj_Ptr, int -> __char_Obj_Ptr
-%LCLop __ + __  :int, __char_Obj_Ptr -> __char_Obj_Ptr
-%LCLop __ + __  :int, int -> int
-%LCLop __ + __  :double, double -> double
-%LCLop __ + __  :__int_Obj_Ptr, int -> __int_Obj_Ptr
-%LCLop __ + __  :int, __int_Obj_Ptr -> __int_Obj_Ptr
-%LCLop __ + __  :__salias30s_Struct_Ptr, int -> __salias30s_Struct_Ptr
-%LCLop __ + __  :int, __salias30s_Struct_Ptr -> __salias30s_Struct_Ptr
-%LCLop __ + __  :____int_Obj_Ptr_Obj_Ptr, int -> ____int_Obj_Ptr_Obj_Ptr
-%LCLop __ + __  :int, ____int_Obj_Ptr_Obj_Ptr -> ____int_Obj_Ptr_Obj_Ptr
-%LCLop __ + __  :__ualias30u_Union_Ptr, int -> __ualias30u_Union_Ptr
-%LCLop __ + __  :int, __ualias30u_Union_Ptr -> __ualias30u_Union_Ptr
-%LCLop __ - __  :__char_Obj_Ptr, int -> __char_Obj_Ptr
-%LCLop __ - __  :__char_Obj_Ptr, __char_Obj_Ptr -> int
-%LCLop __ - __  :int, int -> int
-%LCLop __ - __  :double, double -> double
-%LCLop __ - __  :__int_Obj_Ptr, int -> __int_Obj_Ptr
-%LCLop __ - __  :__int_Obj_Ptr, __int_Obj_Ptr -> int
-%LCLop __ - __  :__salias30s_Struct_Ptr, int -> __salias30s_Struct_Ptr
-%LCLop __ - __  :__salias30s_Struct_Ptr, __salias30s_Struct_Ptr -> int
-%LCLop __ - __  :____int_Obj_Ptr_Obj_Ptr, int -> ____int_Obj_Ptr_Obj_Ptr
-%LCLop __ - __  :____int_Obj_Ptr_Obj_Ptr, ____int_Obj_Ptr_Obj_Ptr -> int
-%LCLop __ - __  :__ualias30u_Union_Ptr, int -> __ualias30u_Union_Ptr
-%LCLop __ - __  :__ualias30u_Union_Ptr, __ualias30u_Union_Ptr -> int
-%LCLop sizeof :bool -> int
-%LCLop sizeof :int -> int
-%LCLop sizeof :char -> int
-%LCLop sizeof :void -> int
-%LCLop sizeof :float -> int
-%LCLop sizeof :double -> int
-%LCLop isSub :_char_Vec, int -> bool
-%LCLop isSub :__char_Obj_Arr, int -> bool
-%LCLop isSub :_int_Vec, int -> bool
-%LCLop isSub :__int_Obj_Arr, int -> bool
-%LCLop isSub :__salias30s_Struct_Tuple_Vec, int -> bool
-%LCLop isSub :__salias30s_Struct_Arr, int -> bool
-%LCLop isSub :___int_Obj_Ptr_Vec, int -> bool
-%LCLop isSub :____int_Obj_Ptr_Obj_Arr, int -> bool
-%LCLop isSub :__ualias30u_Union_UnionVal_Vec, int -> bool
-%LCLop isSub :__ualias30u_Union_Arr, int -> bool
-%LCLop succ :int -> int
-%LCLop pred :int -> int
-%LCLop abs :int -> int
-%LCLop abs :double -> double
-%LCLop div :int, int -> int
-%LCLop mod :int, int -> int
-%LCLop min :int, int -> int
-%LCLtype float float exposed
-%LCLtype bool bool immutable
-%LCLconst FALSE bool
-%LCLconst TRUE bool
-%LCLtype st _st exposed
-%LCLtype ut _ut exposed
-%LCLvar gst _salias30s_Struct
-%LCLvar gu ___ualias30u_Union_Ptr_Obj
-%LCLfcn f : __int_Obj_Arr, _salias30s_Struct_Tuple, __ualias30u_Union_Ptr -> int 
-%LCLfcnGlobals _salias30s_Struct gst; ___ualias30u_Union_Ptr_Obj gu; 
-%LCLfcn model : __int_Obj_Arr -> void 
-%LCLfcnGlobals _salias30s_Struct gst; ___ualias30u_Union_Ptr_Obj gu; 
-%LCLfcn modst : _salias30s_Struct_Tuple -> void 
-%LCLfcnGlobals 
-%LCLfcn modu : __ualias30u_Union_Ptr -> void 
-%LCLfcnGlobals 
-%LCLSymbolTableEnd
diff --git a/test/temp/alias3.lh b/test/temp/alias3.lh
deleted file mode 100644 (file)
index 83f1923..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Output from LCLint 2.9a */
-# include "bool.h"
-
-
-# ifndef EXPOSED_TYPE_st
-typedef struct {
-    int a;
-    int *b;
-    } st;
-# endif
-
-
-# ifndef EXPOSED_TYPE_ut
-typedef union {
-    int a;
-    st s;
-    st *t;
-    int **c;
-    } ut;
-# endif
-
-extern st  gst;
-extern ut  *gu;
-extern int f (int  /* ia */[], st  /* s1 */, ut * /* u1 */);
-extern void model (int  /* ia */[]);
-extern void modst (st  /* s1 */);
-extern void modu (ut * /* u */);
diff --git a/test/temp/bool.h b/test/temp/bool.h
deleted file mode 100644 (file)
index 7f37dae..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef BOOL_H
-#define BOOL_H
-
-/*@-cppnames@*/
-/*@-exporttype@*/
-typedef /*@abstract@*/ int bool;
-/*@=exporttype@*/
-/*@=cppnames@*/
-
-#ifndef FALSE
-/*@constant unused bool FALSE@*/
-#define FALSE 0
-#endif
-
-#ifndef TRUE
-/*@constant unused bool TRUE@*/
-#define TRUE (! FALSE)
-#endif
-
-/*@-slovakfcns@*/
-extern void bool_initMod (void);
-# define bool_initMod()
-
-extern /*@observer@*/ char *bool_unparse (bool);
-# define bool_unparse(b) ((b) ? "true" : "false" )
-
-extern bool bool_not (bool);
-# define bool_not(b) ((b) ? FALSE : TRUE)
-
-extern bool bool_equal (bool, bool);
-# define bool_equal(a,b) ((a) ? (b) : !(b))
-/*@=slovakfcns@*/
-
-# endif
diff --git a/test/temp/case.c b/test/temp/case.c
deleted file mode 100644 (file)
index ab36073..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-int f (int x)
-{
-  int p;
-
-  switch (x)
-    {
-    case 1:
-      p = 2; break;
-    case 2:
-      p = 3; break;
-    default:
-      return 0;
-    }
-
-  return p;
-}
diff --git a/test/temp/cases.c b/test/temp/cases.c
deleted file mode 100644 (file)
index 7e0c011..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-extern int g(int x);
-
-int f(int j)
-{
-  int i;
-
-  switch (j) 
-    {
-    case 3: /* okay */
-      i = g(j);
-      printf("3");
-    case 4:  /* 2. Fall through case (no preceeding break) */
-      if (i == 3) /* 1. Variable i used before definition */
-       {
-         printf("hullo");
-         return 3;
-       }
-      else
-       {
-         printf("yabba");
-         break;
-       }
-    case 5: /* okay */
-      i = g(j++);
-      while (i < 3)
-       {
-         i++;
-         if (j == 4) break;
-       }
-    case 6: /* 3. Fall through case (no preceeding break) */
-      printf("high");
-      return 3;
-    case 7: /* okay */
-    case 8: /* okay */
-    case 9:
-      printf("nope");
-    default: /* 4. Fall through case (no preceeding break) */
-      printf("splat");
-   }
-} /* 5. Path with no return in function declared to return int */
-  
diff --git a/test/temp/csyntax16.c b/test/temp/csyntax16.c
deleted file mode 100644 (file)
index 1959a66..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * lclfoo.c - test lclint
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-
-int main(int argc, char *argv[])
-{
-   int i = 0, num;
-   float pet = 0.0;
-   int (*qfun)(float *);
-
-   int (*getbuiltout(int))(float *);
-
-   num = (argc > 1) ? atoi(argv[1]) : 0;
-
-   qfun = getbuiltout(num);
-
-   if (qfun != NULL) {
-      i = qfun(&pet);
-      printf("number in float %f and returns %d\n", pet, i);
-      exit(EXIT_SUCCESS);
-   } else exit(EXIT_FAILURE);
-}
-
-/*
- * should be a function (of one arg - int) returning
- * a pointer to a function (of one arg - float *) returning int
- * 
- * From: cdecl
- * cdecl> declare getbuiltout as function (verbose as int) returning
- *        pointer to function (pobj as pointer to float) returning int
- * int (*getbuiltout(int verbose))(float *pobj) { }
- */
-
-int (*getbuiltout(int verbose))(float *)
-{
-   int qpolygon(float *);
-
-   switch(verbose) {
-    case 1:
-      return qpolygon;
-    default:
-      return NULL;
-   }
-}
-
diff --git a/test/temp/employee.c b/test/temp/employee.c
deleted file mode 100644 (file)
index 5e40a7e..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# include "employee.lh"
-
-struct
-{
-  int x;
-} ;
-
-struct s_f
-{
-  int x;
-} ;
-
-int crunch (employee e)
-{
-  return e.ssNum;
-}
diff --git a/test/temp/employee.lcl b/test/temp/employee.lcl
deleted file mode 100644 (file)
index dfa82ca..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-typedef struct 
-{
-  int ssNum;
-  int salary;
-} employee;
-
-int crunch (employee e) { }
diff --git a/test/temp/employee.lcs b/test/temp/employee.lcs
deleted file mode 100644 (file)
index 1b5fc45..0000000
+++ /dev/null
@@ -1,149 +0,0 @@
-%PASSED Output from LCLint 2.9a
-%LCLimports 
-%LCLSortTable
-%LCLsort bool immutable nil nil
-%LCLsort Bool synonym bool nil
-%LCLsort int primitive nil nil
-%LCLsort char primitive nil nil
-%LCLsort void primitive nil nil
-%LCLsort _char_Obj obj char nil
-%LCLsort __char_Obj_Ptr ptr _char_Obj nil
-%LCLsort __char_Obj_Arr arr _char_Obj nil
-%LCLsort _char_Vec vec char __char_Obj_Arr
-%LCLsort float primitive nil nil
-%LCLsort double primitive nil nil
-%LCLsort _semployee0s_Struct str semployee0s nil
-%LCLsort salary strMem _int_Obj nil
-%LCLsort ssNum strMem _int_Obj nil
-%LCLsort strEnd nil nil nil
-%LCLsort _int_Obj obj int nil
-%LCLsort _semployee0s_Struct_Tuple tup _semployee0s_Struct nil
-%LCLsort __semployee0s_Struct_Ptr ptr _semployee0s_Struct nil
-%LCLsort __semployee0s_Struct_Arr arr _semployee0s_Struct nil
-%LCLsort __semployee0s_Struct_Tuple_Vec vec _semployee0s_Struct_Tuple __semployee0s_Struct_Arr
-%LCLsort _employee synonym _semployee0s_Struct nil
-%LCLSortTableEnd
-%LCLSymbolTable
-%LCLop max :int, int -> int
-%LCLop 0 : -> int
-%LCLop 0 : -> double
-%LCLop 1 : -> int
-%LCLop 1 : -> double
-%LCLop __ < __  :int, int -> bool
-%LCLop __ < __  :double, double -> bool
-%LCLop if __ then __ else __  :bool, bool, bool -> bool
-%LCLop if __ then __ else __  :bool, int, int -> int
-%LCLop if __ then __ else __  :bool, double, double -> double
-%LCLop if __ then __ else __  :bool, _char_Vec, _char_Vec -> _char_Vec
-%LCLop if __ then __ else __  :bool, char, char -> char
-%LCLop empty : -> _char_Vec
-%LCLop __ > __  :int, int -> bool
-%LCLop __ > __  :double, double -> bool
-%LCLop count :char, _char_Vec -> int
-%LCLop head :_char_Vec -> char
-%LCLop __ \inv :double -> double
-%LCLop init :_char_Vec -> _char_Vec
-%LCLop isEmpty :_char_Vec -> bool
-%LCLop last :_char_Vec -> char
-%LCLop len :_char_Vec -> int
-%LCLop prefix :_char_Vec, int -> _char_Vec
-%LCLop __ / __  :double, double -> double
-%LCLop removePrefix :_char_Vec, int -> _char_Vec
-%LCLop __ \implies __  :bool, bool -> bool
-%LCLop substring :_char_Vec, int, int -> _char_Vec
-%LCLop __ || __  :_char_Vec, _char_Vec -> _char_Vec
-%LCLop tail :_char_Vec -> _char_Vec
-%LCLop __ \in __  :char, _char_Vec -> bool
-%LCLop nullTerminated :_char_Vec -> bool
-%LCLop throughNull :_char_Vec -> _char_Vec
-%LCLop sameStr :_char_Vec, _char_Vec -> bool
-%LCLop lenStr :_char_Vec -> int
-%LCLop times10plus :int, int -> int
-%LCLop plus1 :int -> int
-%LCLop 2 : -> int
-%LCLop 3 : -> int
-%LCLop 4 : -> int
-%LCLop 5 : -> int
-%LCLop 6 : -> int
-%LCLop 7 : -> int
-%LCLop 8 : -> int
-%LCLop 9 : -> int
-%LCLop __ * __  :int, int -> int
-%LCLop __ * __  :double, double -> double
-%LCLop true : -> bool
-%LCLop false : -> bool
-%LCLop __ \and __  :bool, bool -> bool
-%LCLop __ \or __  :bool, bool -> bool
-%LCLop __ \eq __  :bool, bool -> bool
-%LCLop __ \eq __  :int, int -> bool
-%LCLop __ \eq __  :double, double -> bool
-%LCLop __ \eq __  :_char_Vec, _char_Vec -> bool
-%LCLop __ \eq __  :char, char -> bool
-%LCLop \not __  :bool -> bool
-%LCLop __ \neq __  :bool, bool -> bool
-%LCLop __ \neq __  :int, int -> bool
-%LCLop __ \neq __  :double, double -> bool
-%LCLop __ \neq __  :_char_Vec, _char_Vec -> bool
-%LCLop __ \neq __  :char, char -> bool
-%LCLop { __ } :char -> _char_Vec
-%LCLop __ \select ssNum :_semployee0s_Struct_Tuple -> int
-%LCLop __ \select ssNum :_semployee0s_Struct -> _int_Obj
-%LCLop [__, __] :int, int -> _semployee0s_Struct_Tuple
-%LCLop __ |- __  :_char_Vec, char -> _char_Vec
-%LCLop __ [] :__char_Obj_Ptr -> __char_Obj_Arr
-%LCLop __ [] :__semployee0s_Struct_Ptr -> __semployee0s_Struct_Arr
-%LCLop __ \field_arrow ssNum :__semployee0s_Struct_Ptr -> _int_Obj
-%LCLop __ \select salary :_semployee0s_Struct_Tuple -> int
-%LCLop __ \select salary :_semployee0s_Struct -> _int_Obj
-%LCLop __ -| __  :char, _char_Vec -> _char_Vec
-%LCLop __ [__] :_char_Vec, int -> char
-%LCLop __ [__] :__char_Obj_Arr, int -> _char_Obj
-%LCLop __ [__] :__semployee0s_Struct_Tuple_Vec, int -> _semployee0s_Struct_Tuple
-%LCLop __ [__] :__semployee0s_Struct_Arr, int -> _semployee0s_Struct
-%LCLop __ \field_arrow salary :__semployee0s_Struct_Ptr -> _int_Obj
-%LCLop __ \leq __  :int, int -> bool
-%LCLop __ \leq __  :double, double -> bool
-%LCLop __ \geq __  :int, int -> bool
-%LCLop __ \geq __  :double, double -> bool
-%LCLop null : -> char
-%LCLop NIL : -> __char_Obj_Ptr
-%LCLop NIL : -> __semployee0s_Struct_Ptr
-%LCLop - __  :int -> int
-%LCLop - __  :double -> double
-%LCLop __ + __  :__char_Obj_Ptr, int -> __char_Obj_Ptr
-%LCLop __ + __  :int, __char_Obj_Ptr -> __char_Obj_Ptr
-%LCLop __ + __  :int, int -> int
-%LCLop __ + __  :double, double -> double
-%LCLop __ + __  :__semployee0s_Struct_Ptr, int -> __semployee0s_Struct_Ptr
-%LCLop __ + __  :int, __semployee0s_Struct_Ptr -> __semployee0s_Struct_Ptr
-%LCLop __ - __  :__char_Obj_Ptr, int -> __char_Obj_Ptr
-%LCLop __ - __  :__char_Obj_Ptr, __char_Obj_Ptr -> int
-%LCLop __ - __  :int, int -> int
-%LCLop __ - __  :double, double -> double
-%LCLop __ - __  :__semployee0s_Struct_Ptr, int -> __semployee0s_Struct_Ptr
-%LCLop __ - __  :__semployee0s_Struct_Ptr, __semployee0s_Struct_Ptr -> int
-%LCLop sizeof :bool -> int
-%LCLop sizeof :int -> int
-%LCLop sizeof :char -> int
-%LCLop sizeof :void -> int
-%LCLop sizeof :float -> int
-%LCLop sizeof :double -> int
-%LCLop isSub :_char_Vec, int -> bool
-%LCLop isSub :__char_Obj_Arr, int -> bool
-%LCLop isSub :__semployee0s_Struct_Tuple_Vec, int -> bool
-%LCLop isSub :__semployee0s_Struct_Arr, int -> bool
-%LCLop succ :int -> int
-%LCLop pred :int -> int
-%LCLop abs :int -> int
-%LCLop abs :double -> double
-%LCLop div :int, int -> int
-%LCLop mod :int, int -> int
-%LCLop min :int, int -> int
-%LCLtype float float exposed
-%LCLtype bool bool immutable
-%LCLconst FALSE bool
-%LCLconst TRUE bool
-%LCLtype employee _employee exposed
-%LCLfcn crunch : _semployee0s_Struct_Tuple -> int 
-%LCLfcnGlobals 
-%LCLSymbolTableEnd
diff --git a/test/temp/employee.lh b/test/temp/employee.lh
deleted file mode 100644 (file)
index 09faacd..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-/* Output from LCLint 2.9a */
-# include "bool.h"
-
-
-# ifndef EXPOSED_TYPE_employee
-typedef struct {
-    int ssNum;
-    int salary;
-    } employee;
-# endif
-
-extern int crunch (employee  /* e */);
diff --git a/test/temp/enumadd.c b/test/temp/enumadd.c
deleted file mode 100644 (file)
index 73f7574..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-enum Months {Jan = 1, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct,
-            Nov, Dec};
-
-int main()
-{
-  int i = Jan + Oct;/*should LClint complain that a enumerated*/
-  /*type was passed to the + operator? */
-  return i;
-}
diff --git a/test/temp/freearray.c b/test/temp/freearray.c
deleted file mode 100644 (file)
index 3134182..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-typedef /*@only@*/ char *ocp;
-
-extern /*@only@*/ char *stringTable;
-extern int stringTableSize;
-
-void destroyMod (void) /*@globals killed stringTable@*/
-{
-  free (stringTable);
-}
diff --git a/test/temp/freearray.expect b/test/temp/freearray.expect
deleted file mode 100644 (file)
index ea11f06..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-
-freearray.c: (in function destroyMod2)
-freearray.c:22:9: Only storage *stringTable (type ocp) derived from released
-                     storage is not released (memory leak): stringTable
-
-Finished LCLint checking --- 1 code error found, as expected
diff --git a/test/temp/gethostbyname.c b/test/temp/gethostbyname.c
deleted file mode 100644 (file)
index 87a78a6..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-# include <netdb.h>
-
-/*@-incondefs@*/ /* Suppress warning about inconsistent definition. */
-extern /*@dependent@*/ struct hostent *gethostbyname (const char *) ;
-/*@=incondefs@*/
-
-void f (const char *name)
-{
-  struct hostent *hname = gethostbyname (name);
-
-  return;
-}
diff --git a/test/temp/malloc b/test/temp/malloc
deleted file mode 100644 (file)
index 6d1c861..0000000
+++ /dev/null
@@ -1,27206 +0,0 @@
-991866206: 1: Dmalloc version '4.8.2' from 'http://dmalloc.com/'
-991866206: 1: flags = 0x1f, logfile 'malloc'
-991866206: 1: interval = 100, addr = 0, seen # = 0
-991866206: 1: starting time = 991866206
-991866206: 1: *** alloc: at 'ctypeList.c:38' for 12 bytes, got '0x8224000|s1'
-991866206: 2: *** alloc: at 'ctypeList.c:42' for 16 bytes, got '0x8224020|s1'
-991866206: 3: *** alloc: at 'ctypeList.c:38' for 12 bytes, got '0x8224040|s1'
-991866206: 4: *** alloc: at 'ctypeList.c:42' for 16 bytes, got '0x8224060|s1'
-991866206: 5: *** alloc: at 'ctypeList.c:38' for 12 bytes, got '0x8224080|s1'
-991866206: 6: *** alloc: at 'ctypeList.c:42' for 16 bytes, got '0x82240a0|s1'
-991866206: 7: *** alloc: at 'ctypeList.c:38' for 12 bytes, got '0x82240c0|s1'
-991866206: 8: *** alloc: at 'ctypeList.c:42' for 16 bytes, got '0x82240e0|s1'
-991866206: 9: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224100|s1'
-991866206: 10: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224120|s1'
-991866206: 11: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224140|s1'
-991866206: 12: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224160|s1'
-991866206: 13: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224180|s1'
-991866206: 14: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82241a0|s1'
-991866206: 15: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82241c0|s1'
-991866206: 16: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82241e0|s1'
-991866206: 17: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224200|s1'
-991866206: 18: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224220|s1'
-991866206: 19: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224240|s1'
-991866206: 20: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224260|s1'
-991866206: 21: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224280|s1'
-991866206: 22: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82242a0|s1'
-991866206: 23: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82242c0|s1'
-991866206: 24: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82242e0|s1'
-991866206: 25: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224300|s1'
-991866206: 26: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224320|s1'
-991866206: 27: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224340|s1'
-991866206: 28: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224360|s1'
-991866206: 29: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224380|s1'
-991866206: 30: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82243a0|s1'
-991866206: 31: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82243c0|s1'
-991866206: 32: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82243e0|s1'
-991866206: 33: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224400|s1'
-991866206: 34: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224420|s1'
-991866206: 35: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224440|s1'
-991866206: 36: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224460|s1'
-991866206: 37: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224480|s1'
-991866206: 38: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82244a0|s1'
-991866206: 39: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82244c0|s1'
-991866206: 40: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82244e0|s1'
-991866206: 41: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224500|s1'
-991866206: 42: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224520|s1'
-991866206: 43: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224540|s1'
-991866206: 44: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224560|s1'
-991866206: 45: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224580|s1'
-991866206: 46: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82245a0|s1'
-991866206: 47: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82245c0|s1'
-991866206: 48: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82245e0|s1'
-991866206: 49: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224600|s1'
-991866206: 50: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224620|s1'
-991866206: 51: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224640|s1'
-991866206: 52: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224660|s1'
-991866206: 53: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224680|s1'
-991866206: 54: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82246a0|s1'
-991866206: 55: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82246c0|s1'
-991866206: 56: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82246e0|s1'
-991866206: 57: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224700|s1'
-991866206: 58: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224720|s1'
-991866206: 59: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224740|s1'
-991866206: 60: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224760|s1'
-991866206: 61: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224780|s1'
-991866206: 62: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82247a0|s1'
-991866206: 63: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82247c0|s1'
-991866206: 64: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82247e0|s1'
-991866206: 65: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224800|s1'
-991866206: 66: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224820|s1'
-991866206: 67: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224840|s1'
-991866206: 68: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224860|s1'
-991866206: 69: *** alloc: at 'qual.c:35' for 8 bytes, got '0x8224880|s1'
-991866206: 70: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82248a0|s1'
-991866206: 71: *** alloc: at 'qual.c:35' for 8 bytes, got '0x82248c0|s1'
-991866206: 72: *** alloc: at 'typeIdSet.c:48' for 64 bytes, got '0x8226000|s1'
-991866206: 73: *** alloc: at 'cppmain.c:82' for 148 bytes, got '0x8227000|s1'
-991866206: 74: *** alloc: at 'cpplib.c:6272' for 200 bytes, got '0x8227100|s1'
-991866206: 75: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82248e0|s1'
-991866206: 76: *** alloc: at 'macrocache.c:80' for 12 bytes, got '0x8224900|s1'
-991866206: 77: *** alloc: at 'macrocache.c:84' for 32 bytes, got '0x8224920|s1'
-991866206: 78: *** alloc: at 'context.c:2757' for 256 bytes, got '0x8227200|s1'
-991866206: 79: *** alloc: at 'filelocStack.c:35' for 12 bytes, got '0x8224940|s1'
-991866206: 80: *** alloc: at 'filelocStack.c:39' for 32 bytes, got '0x8224960|s1'
-991866206: 81: *** alloc: at 'ra=0x80a6a14' for 16 bytes, got '0x8224980|s1'
-991866206: 82: *** alloc: at 'ra=0x80a6a3c' for 256 bytes, got '0x8227300|s1'
-991866206: 83: *** alloc: at 'cstringTable.c:275' for 12 bytes, got '0x82249a0|s1'
-991866206: 84: *** alloc: at 'cstringTable.c:279' for 1092 bytes, got '0x8228000|s1'
-991866206: 85: *** alloc: at 'messageLog.c:34' for 12 bytes, got '0x82249c0|s1'
-991866206: 86: *** alloc: at 'messageLog.c:38' for 32 bytes, got '0x82249e0|s1'
-991866206: 87: *** alloc: at 'flagMarkerList.c:40' for 12 bytes, got '0x8224a00|s1'
-991866206: 88: *** alloc: at 'flagMarkerList.c:45' for 16 bytes, got '0x8224a20|s1'
-991866206: 89: *** alloc: at 'clauseStack.c:38' for 16 bytes, got '0x8224a40|s1'
-991866206: 90: *** alloc: at 'clauseStack.c:42' for 32 bytes, got '0x8224a60|s1'
-991866206: 91: *** alloc: at 'usymtab.c:293' for 48 bytes, got '0x8226040|s1'
-991866206: 92: *** alloc: at 'usymtab.c:297' for 4096 bytes, got '0x8229000|s1'
-991866206: 93: *** alloc: at 'cstringTable.c:275' for 12 bytes, got '0x8224a80|s1'
-991866206: 94: *** alloc: at 'cstringTable.c:279' for 7180 bytes, got '0x822a000|s1'
-991866206: 95: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8224aa0|s1'
-991866206: 96: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8224ac0|s1'
-991866206: 97: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8224ae0|s1'
-991866206: 98: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8224b00|s1'
-991866206: 99: *** alloc: at 'ra=0x80a2d3e' for 6 bytes, got '0x8224b20|s1'
-991866206: 100: checking heap
-991866206: 100: *** free: at 'ra=0x80a2d85' pnt '0x8224b00|s2': size 5, alloced at 'ra=0x80e6889'
-991866206: 101: *** alloc: at 'ra=0x80e6889' for 29 bytes, got '0x8224b40|s1'
-991866206: 102: *** alloc: at 'ra=0x80e6889' for 31 bytes, got '0x8224b60|s1'
-991866206: 103: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8224b80|s1'
-991866206: 104: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x8224ba0|s1'
-991866206: 105: *** alloc: at 'intSet.c:39' for 12 bytes, got '0x8224bc0|s1'
-991866206: 106: *** alloc: at 'intSet.c:43' for 16 bytes, got '0x8224be0|s1'
-991866206: 107: *** free: at 'intSet.c:174' pnt '0x8224be0|s2': size 16, alloced at 'intSet.c:43'
-991866206: 108: *** free: at 'intSet.c:175' pnt '0x8224bc0|s2': size 12, alloced at 'intSet.c:39'
-991866206: 109: *** alloc: at 'genericTable.c:269' for 12 bytes, got '0x8224c00|s1'
-991866206: 110: *** alloc: at 'genericTable.c:274' for 128 bytes, got '0x822c000|s1'
-991866206: 111: *** alloc: at 'genericTable.c:269' for 12 bytes, got '0x8224c20|s1'
-991866206: 112: *** alloc: at 'genericTable.c:274' for 128 bytes, got '0x822c080|s1'
-991866206: 113: *** alloc: at 'ra=0x80e68d7' for 1 bytes, got '0x8224c40|s1'
-991866206: 114: *** alloc: at 'ra=0x80e6782' for 12 bytes, got '0x8224c60|s1'
-991866206: 115: *** free: at 'general.c:258' pnt '0x8224c40|s2': size 1, alloced at 'ra=0x80e68d7'
-991866206: 116: *** alloc: at 'ra=0x80e6804' for 13 bytes, got '0x8224c80|s1'
-991866206: 117: *** free: at 'general.c:274' pnt '0x8224c60|s2': size 12, alloced at 'ra=0x80e6782'
-991866206: 118: *** alloc: at 'ra=0x80e6782' for 22 bytes, got '0x8224ca0|s1'
-991866206: 119: *** free: at 'general.c:258' pnt '0x8224c80|s2': size 13, alloced at 'ra=0x80e6804'
-991866206: 120: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d000|s1'
-991866206: 121: *** alloc: at 'ra=0x80e6889' for 22 bytes, got '0x8224b00|s3'
-991866206: 122: *** alloc: at 'ra=0x80a692c' for 20 bytes, got '0x8224cc0|s1'
-991866206: 123: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8224ce0|s1'
-991866206: 124: *** alloc: at 'ra=0x80e6889' for 1 bytes, got '0x8224d00|s1'
-991866206: 125: *** free: at 'fileLib.c:123' pnt '0x8224ce0|s2': size 13, alloced at 'ra=0x80e6889'
-991866206: 126: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8224d20|s1'
-991866206: 127: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8224be0|s3'
-991866206: 128: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8224bc0|s3'
-991866206: 129: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8224d40|s1'
-991866206: 130: *** alloc: at 'ra=0x80e68d7' for 1025 bytes, got '0x8228800|s1'
-991866206: 131: *** free: at 'llmain.c:2419' pnt '0x8228800|s2': size 1025, alloced at 'ra=0x80e68d7'
-991866206: 132: *** free: at 'ra=0x40092cd9' pnt '0x822d000|s2': size 364, alloced at 'ra=0x400932b1'
-991866206: 133: *** free: at 'ra=0x80a3a49' pnt '0x8224d40|s2': size 16, alloced at 'ra=0x80a4654'
-991866206: 134: *** alloc: at 'ra=0x80e68d7' for 1 bytes, got '0x8224d60|s1'
-991866206: 135: *** alloc: at 'ra=0x80e6804' for 2 bytes, got '0x8224c40|s3'
-991866206: 136: *** free: at 'general.c:274' pnt '0x8224d60|s2': size 1, alloced at 'ra=0x80e68d7'
-991866206: 137: *** alloc: at 'ra=0x80e6804' for 3 bytes, got '0x8224c60|s3'
-991866206: 138: *** free: at 'general.c:274' pnt '0x8224c40|s4': size 2, alloced at 'ra=0x80e6804'
-991866206: 139: *** alloc: at 'ra=0x80e6782' for 12 bytes, got '0x8224c80|s3'
-991866206: 140: *** free: at 'general.c:258' pnt '0x8224c60|s4': size 3, alloced at 'ra=0x80e6804'
-991866206: 141: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d200|s1'
-991866206: 142: *** free: at 'ra=0x40093326' pnt '0x822d200|s2': size 364, alloced at 'ra=0x400932b1'
-991866206: 143: *** free: at 'llmain.c:795' pnt '0x8224c80|s4': size 12, alloced at 'ra=0x80e6782'
-991866206: 144: *** alloc: at 'cstringSList.c:44' for 12 bytes, got '0x8224d80|s1'
-991866206: 145: *** alloc: at 'cstringSList.c:48' for 32 bytes, got '0x8224ce0|s3'
-991866206: 146: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8224da0|s1'
-991866206: 147: *** alloc: at 'ra=0x80a692c' for 20 bytes, got '0x8224dc0|s1'
-991866206: 148: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8224de0|s1'
-991866206: 149: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8224e00|s1'
-991866206: 150: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8224e20|s1'
-991866206: 151: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8224e40|s1'
-991866206: 152: *** alloc: at 'ra=0x80e68d7' for 9 bytes, got '0x8224e60|s1'
-991866206: 153: *** alloc: at 'osd.c:203' for 36 bytes, got '0x8226080|s1'
-991866206: 154: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d000|s3'
-991866206: 155: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8224d40|s3'
-991866206: 156: *** alloc: at 'ra=0x80a692c' for 20 bytes, got '0x8224d60|s3'
-991866206: 157: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8224e80|s1'
-991866206: 158: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8224c40|s5'
-991866206: 159: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8224ea0|s1'
-991866206: 160: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8224c60|s5'
-991866206: 161: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8224ec0|s1'
-991866206: 162: *** alloc: at 'ra=0x80e68d7' for 16385 bytes, got '0x822e000|s1'
-991866206: 163: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8224c80|s5'
-991866206: 164: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8224ee0|s1'
-991866206: 165: *** alloc: at 'cttable.i:561' for 1024 bytes, got '0x8233000|s1'
-991866206: 166: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8224f00|s1'
-991866206: 167: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8224f20|s1'
-991866206: 168: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8224f40|s1'
-991866206: 169: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8224f60|s1'
-991866206: 170: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8224f80|s1'
-991866206: 171: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8224fa0|s1'
-991866206: 172: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8224fc0|s1'
-991866206: 173: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8224fe0|s1'
-991866206: 174: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235000|s1'
-991866206: 175: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235020|s1'
-991866206: 176: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235040|s1'
-991866206: 177: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235060|s1'
-991866206: 178: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235080|s1'
-991866206: 179: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82350a0|s1'
-991866206: 180: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82350c0|s1'
-991866206: 181: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82350e0|s1'
-991866206: 182: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235100|s1'
-991866206: 183: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235120|s1'
-991866206: 184: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235140|s1'
-991866206: 185: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235160|s1'
-991866206: 186: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235180|s1'
-991866206: 187: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82351a0|s1'
-991866206: 188: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82351c0|s1'
-991866206: 189: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82351e0|s1'
-991866206: 190: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235200|s1'
-991866206: 191: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235220|s1'
-991866206: 192: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235240|s1'
-991866206: 193: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235260|s1'
-991866206: 194: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235280|s1'
-991866206: 195: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82352a0|s1'
-991866206: 196: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82352c0|s1'
-991866206: 197: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82352e0|s1'
-991866206: 198: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235300|s1'
-991866206: 199: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235320|s1'
-991866206: 200: checking heap
-991866206: 200: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235340|s1'
-991866206: 201: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235360|s1'
-991866206: 202: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235380|s1'
-991866206: 203: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82353a0|s1'
-991866206: 204: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82353c0|s1'
-991866206: 205: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82353e0|s1'
-991866206: 206: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235400|s1'
-991866206: 207: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235420|s1'
-991866206: 208: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235440|s1'
-991866206: 209: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235460|s1'
-991866206: 210: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235480|s1'
-991866206: 211: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82354a0|s1'
-991866206: 212: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82354c0|s1'
-991866206: 213: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82354e0|s1'
-991866206: 214: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235500|s1'
-991866206: 215: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235520|s1'
-991866206: 216: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235540|s1'
-991866206: 217: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235560|s1'
-991866206: 218: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235580|s1'
-991866206: 219: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82355a0|s1'
-991866206: 220: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82355c0|s1'
-991866206: 221: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82355e0|s1'
-991866206: 222: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235600|s1'
-991866206: 223: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235620|s1'
-991866206: 224: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235640|s1'
-991866206: 225: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235660|s1'
-991866206: 226: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235680|s1'
-991866206: 227: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82356a0|s1'
-991866206: 228: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82356c0|s1'
-991866206: 229: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82356e0|s1'
-991866206: 230: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235700|s1'
-991866206: 231: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235720|s1'
-991866206: 232: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235740|s1'
-991866206: 233: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235760|s1'
-991866206: 234: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235780|s1'
-991866206: 235: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82357a0|s1'
-991866206: 236: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82357c0|s1'
-991866206: 237: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82357e0|s1'
-991866206: 238: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235800|s1'
-991866206: 239: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235820|s1'
-991866206: 240: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235840|s1'
-991866206: 241: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235860|s1'
-991866206: 242: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235880|s1'
-991866206: 243: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82358a0|s1'
-991866206: 244: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82358c0|s1'
-991866206: 245: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82358e0|s1'
-991866206: 246: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235900|s1'
-991866206: 247: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235920|s1'
-991866206: 248: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235940|s1'
-991866206: 249: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235960|s1'
-991866206: 250: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235980|s1'
-991866206: 251: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82359a0|s1'
-991866206: 252: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82359c0|s1'
-991866206: 253: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82359e0|s1'
-991866206: 254: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235a00|s1'
-991866206: 255: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235a20|s1'
-991866206: 256: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235a40|s1'
-991866206: 257: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235a60|s1'
-991866206: 258: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235a80|s1'
-991866206: 259: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235aa0|s1'
-991866206: 260: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235ac0|s1'
-991866206: 261: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235ae0|s1'
-991866206: 262: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235b00|s1'
-991866206: 263: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235b20|s1'
-991866206: 264: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235b40|s1'
-991866206: 265: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235b60|s1'
-991866206: 266: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235b80|s1'
-991866206: 267: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235ba0|s1'
-991866206: 268: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235bc0|s1'
-991866206: 269: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235be0|s1'
-991866206: 270: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235c00|s1'
-991866206: 271: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235c20|s1'
-991866206: 272: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235c40|s1'
-991866206: 273: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235c60|s1'
-991866206: 274: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235c80|s1'
-991866206: 275: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235ca0|s1'
-991866206: 276: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235cc0|s1'
-991866206: 277: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235ce0|s1'
-991866206: 278: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235d00|s1'
-991866206: 279: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235d20|s1'
-991866206: 280: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235d40|s1'
-991866206: 281: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235d60|s1'
-991866206: 282: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235d80|s1'
-991866206: 283: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235da0|s1'
-991866206: 284: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235dc0|s1'
-991866206: 285: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235de0|s1'
-991866206: 286: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235e00|s1'
-991866206: 287: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235e20|s1'
-991866206: 288: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235e40|s1'
-991866206: 289: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235e60|s1'
-991866206: 290: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235e80|s1'
-991866206: 291: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235ea0|s1'
-991866206: 292: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235ec0|s1'
-991866206: 293: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235ee0|s1'
-991866206: 294: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235f00|s1'
-991866206: 295: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235f20|s1'
-991866206: 296: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235f40|s1'
-991866206: 297: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235f60|s1'
-991866206: 298: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235f80|s1'
-991866206: 299: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8235fa0|s1'
-991866206: 300: checking heap
-991866206: 300: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8235fc0|s1'
-991866206: 301: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8235fe0|s1'
-991866206: 302: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237000|s1'
-991866206: 303: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8237020|s1'
-991866206: 304: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237040|s1'
-991866206: 305: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237060|s1'
-991866206: 306: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8237080|s1'
-991866206: 307: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82370a0|s1'
-991866206: 308: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82370c0|s1'
-991866206: 309: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82370e0|s1'
-991866206: 310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237100|s1'
-991866206: 311: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82260c0|s1'
-991866206: 312: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c100|s1'
-991866206: 313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237120|s1'
-991866206: 314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237140|s1'
-991866206: 315: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237160|s1'
-991866206: 316: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237180|s1'
-991866206: 317: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82371a0|s1'
-991866206: 318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82371c0|s1'
-991866206: 319: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82371e0|s1'
-991866206: 320: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237200|s1'
-991866206: 321: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237220|s1'
-991866206: 322: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237240|s1'
-991866206: 323: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237260|s1'
-991866206: 324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237280|s1'
-991866206: 325: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226100|s1'
-991866206: 326: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c180|s1'
-991866206: 327: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82372a0|s1'
-991866206: 328: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82372c0|s1'
-991866206: 329: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82372e0|s1'
-991866206: 330: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237300|s1'
-991866206: 331: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237320|s1'
-991866206: 332: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237340|s1'
-991866206: 333: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237360|s1'
-991866206: 334: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237380|s1'
-991866206: 335: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82373a0|s1'
-991866206: 336: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82373c0|s1'
-991866206: 337: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82373e0|s1'
-991866206: 338: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237400|s1'
-991866206: 339: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237420|s1'
-991866206: 340: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237440|s1'
-991866206: 341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237460|s1'
-991866206: 342: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226140|s1'
-991866206: 343: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c200|s1'
-991866206: 344: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237480|s1'
-991866206: 345: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82374a0|s1'
-991866206: 346: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82374c0|s1'
-991866206: 347: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82374e0|s1'
-991866206: 348: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237500|s1'
-991866206: 349: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237520|s1'
-991866206: 350: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237540|s1'
-991866206: 351: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237560|s1'
-991866206: 352: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237580|s1'
-991866206: 353: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82375a0|s1'
-991866206: 354: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82375c0|s1'
-991866206: 355: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82375e0|s1'
-991866206: 356: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226180|s1'
-991866206: 357: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c280|s1'
-991866206: 358: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237600|s1'
-991866206: 359: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237620|s1'
-991866206: 360: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237640|s1'
-991866206: 361: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237660|s1'
-991866206: 362: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237680|s1'
-991866206: 363: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82376a0|s1'
-991866206: 364: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82376c0|s1'
-991866206: 365: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82376e0|s1'
-991866206: 366: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237700|s1'
-991866206: 367: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237720|s1'
-991866206: 368: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237740|s1'
-991866206: 369: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237760|s1'
-991866206: 370: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82261c0|s1'
-991866206: 371: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c300|s1'
-991866206: 372: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237780|s1'
-991866206: 373: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82377a0|s1'
-991866206: 374: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82377c0|s1'
-991866206: 375: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82377e0|s1'
-991866206: 376: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237800|s1'
-991866206: 377: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237820|s1'
-991866206: 378: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237840|s1'
-991866206: 379: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237860|s1'
-991866206: 380: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237880|s1'
-991866206: 381: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82378a0|s1'
-991866206: 382: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82378c0|s1'
-991866206: 383: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82378e0|s1'
-991866206: 384: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226200|s1'
-991866206: 385: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c380|s1'
-991866206: 386: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237900|s1'
-991866206: 387: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237920|s1'
-991866206: 388: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237940|s1'
-991866206: 389: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237960|s1'
-991866206: 390: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237980|s1'
-991866206: 391: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82379a0|s1'
-991866206: 392: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82379c0|s1'
-991866206: 393: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82379e0|s1'
-991866206: 394: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237a00|s1'
-991866206: 395: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237a20|s1'
-991866206: 396: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237a40|s1'
-991866206: 397: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237a60|s1'
-991866206: 398: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226240|s1'
-991866206: 399: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c400|s1'
-991866206: 400: checking heap
-991866206: 400: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237a80|s1'
-991866206: 401: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237aa0|s1'
-991866206: 402: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237ac0|s1'
-991866206: 403: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237ae0|s1'
-991866206: 404: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237b00|s1'
-991866206: 405: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237b20|s1'
-991866206: 406: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237b40|s1'
-991866206: 407: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237b60|s1'
-991866206: 408: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237b80|s1'
-991866206: 409: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237ba0|s1'
-991866206: 410: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237bc0|s1'
-991866206: 411: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237be0|s1'
-991866206: 412: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226280|s1'
-991866206: 413: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c480|s1'
-991866206: 414: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237c00|s1'
-991866206: 415: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237c20|s1'
-991866206: 416: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237c40|s1'
-991866206: 417: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237c60|s1'
-991866206: 418: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237c80|s1'
-991866206: 419: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237ca0|s1'
-991866206: 420: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237cc0|s1'
-991866206: 421: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237ce0|s1'
-991866206: 422: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237d00|s1'
-991866206: 423: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237d20|s1'
-991866206: 424: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237d40|s1'
-991866206: 425: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237d60|s1'
-991866206: 426: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82262c0|s1'
-991866206: 427: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c500|s1'
-991866206: 428: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237d80|s1'
-991866206: 429: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237da0|s1'
-991866206: 430: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237dc0|s1'
-991866206: 431: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237de0|s1'
-991866206: 432: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237e00|s1'
-991866206: 433: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237e20|s1'
-991866206: 434: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237e40|s1'
-991866206: 435: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237e60|s1'
-991866206: 436: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8237e80|s1'
-991866206: 437: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8237ea0|s1'
-991866206: 438: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8237ec0|s1'
-991866206: 439: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237ee0|s1'
-991866206: 440: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226300|s1'
-991866206: 441: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c580|s1'
-991866206: 442: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237f00|s1'
-991866206: 443: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237f20|s1'
-991866206: 444: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8237f40|s1'
-991866206: 445: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8237f60|s1'
-991866206: 446: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8237f80|s1'
-991866206: 447: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8237fa0|s1'
-991866206: 448: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8237fc0|s1'
-991866206: 449: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8237fe0|s1'
-991866206: 450: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239000|s1'
-991866206: 451: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239020|s1'
-991866206: 452: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8239040|s1'
-991866206: 453: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239060|s1'
-991866206: 454: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226340|s1'
-991866206: 455: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c600|s1'
-991866206: 456: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239080|s1'
-991866206: 457: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82390a0|s1'
-991866206: 458: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82390c0|s1'
-991866206: 459: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82390e0|s1'
-991866206: 460: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239100|s1'
-991866206: 461: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239120|s1'
-991866206: 462: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239140|s1'
-991866206: 463: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239160|s1'
-991866206: 464: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239180|s1'
-991866206: 465: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82391a0|s1'
-991866206: 466: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82391c0|s1'
-991866206: 467: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82391e0|s1'
-991866206: 468: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226380|s1'
-991866206: 469: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c680|s1'
-991866206: 470: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239200|s1'
-991866206: 471: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239220|s1'
-991866206: 472: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239240|s1'
-991866206: 473: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239260|s1'
-991866206: 474: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239280|s1'
-991866206: 475: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82392a0|s1'
-991866206: 476: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82392c0|s1'
-991866206: 477: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82392e0|s1'
-991866206: 478: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239300|s1'
-991866206: 479: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239320|s1'
-991866206: 480: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8239340|s1'
-991866206: 481: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239360|s1'
-991866206: 482: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82263c0|s1'
-991866206: 483: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c700|s1'
-991866206: 484: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239380|s1'
-991866206: 485: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82393a0|s1'
-991866206: 486: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82393c0|s1'
-991866206: 487: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82393e0|s1'
-991866206: 488: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239400|s1'
-991866206: 489: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239420|s1'
-991866206: 490: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239440|s1'
-991866206: 491: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239460|s1'
-991866206: 492: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239480|s1'
-991866206: 493: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82394a0|s1'
-991866206: 494: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82394c0|s1'
-991866206: 495: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82394e0|s1'
-991866206: 496: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226400|s1'
-991866206: 497: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c780|s1'
-991866206: 498: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239500|s1'
-991866206: 499: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239520|s1'
-991866206: 500: checking heap
-991866206: 500: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239540|s1'
-991866206: 501: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239560|s1'
-991866206: 502: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239580|s1'
-991866206: 503: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82395a0|s1'
-991866206: 504: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82395c0|s1'
-991866206: 505: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82395e0|s1'
-991866206: 506: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239600|s1'
-991866206: 507: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239620|s1'
-991866206: 508: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8239640|s1'
-991866206: 509: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239660|s1'
-991866206: 510: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226440|s1'
-991866206: 511: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c800|s1'
-991866206: 512: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239680|s1'
-991866206: 513: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82396a0|s1'
-991866206: 514: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82396c0|s1'
-991866206: 515: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82396e0|s1'
-991866206: 516: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239700|s1'
-991866206: 517: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239720|s1'
-991866206: 518: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239740|s1'
-991866206: 519: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239760|s1'
-991866206: 520: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239780|s1'
-991866206: 521: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82397a0|s1'
-991866206: 522: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82397c0|s1'
-991866206: 523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82397e0|s1'
-991866206: 524: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226480|s1'
-991866206: 525: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c880|s1'
-991866206: 526: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239800|s1'
-991866206: 527: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239820|s1'
-991866206: 528: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239840|s1'
-991866206: 529: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239860|s1'
-991866206: 530: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239880|s1'
-991866206: 531: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82398a0|s1'
-991866206: 532: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82398c0|s1'
-991866206: 533: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82398e0|s1'
-991866206: 534: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239900|s1'
-991866206: 535: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239920|s1'
-991866206: 536: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8239940|s1'
-991866206: 537: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239960|s1'
-991866206: 538: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239980|s1'
-991866206: 539: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82399a0|s1'
-991866206: 540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82399c0|s1'
-991866206: 541: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82264c0|s1'
-991866206: 542: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c900|s1'
-991866206: 543: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82399e0|s1'
-991866206: 544: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239a00|s1'
-991866206: 545: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239a20|s1'
-991866206: 546: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239a40|s1'
-991866206: 547: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239a60|s1'
-991866206: 548: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239a80|s1'
-991866206: 549: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239aa0|s1'
-991866206: 550: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239ac0|s1'
-991866206: 551: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239ae0|s1'
-991866206: 552: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239b00|s1'
-991866206: 553: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8239b20|s1'
-991866206: 554: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239b40|s1'
-991866206: 555: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239b60|s1'
-991866206: 556: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8239b80|s1'
-991866206: 557: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239ba0|s1'
-991866206: 558: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226500|s1'
-991866206: 559: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822c980|s1'
-991866206: 560: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239bc0|s1'
-991866206: 561: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239be0|s1'
-991866206: 562: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239c00|s1'
-991866206: 563: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239c20|s1'
-991866206: 564: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239c40|s1'
-991866206: 565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239c60|s1'
-991866206: 566: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239c80|s1'
-991866206: 567: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239ca0|s1'
-991866206: 568: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239cc0|s1'
-991866206: 569: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239ce0|s1'
-991866206: 570: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8239d00|s1'
-991866206: 571: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239d20|s1'
-991866206: 572: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226540|s1'
-991866206: 573: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822ca00|s1'
-991866206: 574: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239d40|s1'
-991866206: 575: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239d60|s1'
-991866206: 576: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239d80|s1'
-991866206: 577: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239da0|s1'
-991866206: 578: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239dc0|s1'
-991866206: 579: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239de0|s1'
-991866206: 580: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239e00|s1'
-991866206: 581: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239e20|s1'
-991866206: 582: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239e40|s1'
-991866206: 583: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239e60|s1'
-991866206: 584: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8239e80|s1'
-991866206: 585: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239ea0|s1'
-991866206: 586: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226580|s1'
-991866206: 587: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822ca80|s1'
-991866206: 588: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239ec0|s1'
-991866206: 589: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239ee0|s1'
-991866206: 590: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8239f00|s1'
-991866206: 591: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8239f20|s1'
-991866206: 592: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8239f40|s1'
-991866206: 593: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8239f60|s1'
-991866206: 594: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8239f80|s1'
-991866206: 595: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8239fa0|s1'
-991866206: 596: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8239fc0|s1'
-991866206: 597: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8239fe0|s1'
-991866206: 598: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b000|s1'
-991866206: 599: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b020|s1'
-991866206: 600: checking heap
-991866206: 600: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82265c0|s1'
-991866206: 601: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cb00|s1'
-991866206: 602: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b040|s1'
-991866206: 603: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b060|s1'
-991866206: 604: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b080|s1'
-991866206: 605: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b0a0|s1'
-991866206: 606: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b0c0|s1'
-991866206: 607: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b0e0|s1'
-991866206: 608: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823b100|s1'
-991866206: 609: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823b120|s1'
-991866206: 610: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823b140|s1'
-991866206: 611: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823b160|s1'
-991866206: 612: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b180|s1'
-991866206: 613: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b1a0|s1'
-991866206: 614: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226600|s1'
-991866206: 615: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cb80|s1'
-991866206: 616: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b1c0|s1'
-991866206: 617: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b1e0|s1'
-991866206: 618: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b200|s1'
-991866206: 619: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b220|s1'
-991866206: 620: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b240|s1'
-991866206: 621: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b260|s1'
-991866206: 622: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823b280|s1'
-991866206: 623: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823b2a0|s1'
-991866206: 624: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823b2c0|s1'
-991866206: 625: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823b2e0|s1'
-991866206: 626: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b300|s1'
-991866206: 627: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b320|s1'
-991866206: 628: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226640|s1'
-991866206: 629: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cc00|s1'
-991866206: 630: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b340|s1'
-991866206: 631: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b360|s1'
-991866206: 632: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b380|s1'
-991866206: 633: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b3a0|s1'
-991866206: 634: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b3c0|s1'
-991866206: 635: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b3e0|s1'
-991866206: 636: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823b400|s1'
-991866206: 637: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823b420|s1'
-991866206: 638: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823b440|s1'
-991866206: 639: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823b460|s1'
-991866206: 640: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b480|s1'
-991866206: 641: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b4a0|s1'
-991866206: 642: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226680|s1'
-991866206: 643: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cc80|s1'
-991866206: 644: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b4c0|s1'
-991866206: 645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b4e0|s1'
-991866206: 646: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b500|s1'
-991866206: 647: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b520|s1'
-991866206: 648: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b540|s1'
-991866206: 649: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b560|s1'
-991866206: 650: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823b580|s1'
-991866206: 651: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823b5a0|s1'
-991866206: 652: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823b5c0|s1'
-991866206: 653: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823b5e0|s1'
-991866206: 654: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b600|s1'
-991866206: 655: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b620|s1'
-991866206: 656: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82266c0|s1'
-991866206: 657: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cd00|s1'
-991866206: 658: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b640|s1'
-991866206: 659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b660|s1'
-991866206: 660: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b680|s1'
-991866206: 661: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b6a0|s1'
-991866206: 662: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b6c0|s1'
-991866206: 663: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b6e0|s1'
-991866206: 664: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823b700|s1'
-991866206: 665: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823b720|s1'
-991866206: 666: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823b740|s1'
-991866206: 667: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823b760|s1'
-991866206: 668: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b780|s1'
-991866206: 669: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b7a0|s1'
-991866206: 670: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226700|s1'
-991866206: 671: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cd80|s1'
-991866206: 672: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b7c0|s1'
-991866206: 673: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b7e0|s1'
-991866206: 674: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b800|s1'
-991866206: 675: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b820|s1'
-991866206: 676: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b840|s1'
-991866206: 677: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b860|s1'
-991866206: 678: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823b880|s1'
-991866206: 679: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823b8a0|s1'
-991866206: 680: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823b8c0|s1'
-991866206: 681: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823b8e0|s1'
-991866206: 682: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823b900|s1'
-991866206: 683: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b920|s1'
-991866206: 684: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226740|s1'
-991866206: 685: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822ce00|s1'
-991866206: 686: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b940|s1'
-991866206: 687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b960|s1'
-991866206: 688: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823b980|s1'
-991866206: 689: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823b9a0|s1'
-991866206: 690: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823b9c0|s1'
-991866206: 691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823b9e0|s1'
-991866206: 692: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823ba00|s1'
-991866206: 693: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823ba20|s1'
-991866206: 694: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823ba40|s1'
-991866206: 695: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823ba60|s1'
-991866206: 696: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823ba80|s1'
-991866206: 697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823baa0|s1'
-991866206: 698: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226780|s1'
-991866206: 699: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822ce80|s1'
-991866206: 700: checking heap
-991866206: 700: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bac0|s1'
-991866206: 701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bae0|s1'
-991866206: 702: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823bb00|s1'
-991866206: 703: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823bb20|s1'
-991866206: 704: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bb40|s1'
-991866206: 705: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bb60|s1'
-991866206: 706: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823bb80|s1'
-991866206: 707: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823bba0|s1'
-991866206: 708: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823bbc0|s1'
-991866206: 709: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823bbe0|s1'
-991866206: 710: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823bc00|s1'
-991866206: 711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bc20|s1'
-991866206: 712: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82267c0|s1'
-991866206: 713: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cf00|s1'
-991866206: 714: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bc40|s1'
-991866206: 715: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bc60|s1'
-991866206: 716: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823bc80|s1'
-991866206: 717: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823bca0|s1'
-991866206: 718: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bcc0|s1'
-991866206: 719: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bce0|s1'
-991866206: 720: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823bd00|s1'
-991866206: 721: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823bd20|s1'
-991866206: 722: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823bd40|s1'
-991866206: 723: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823bd60|s1'
-991866206: 724: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823bd80|s1'
-991866206: 725: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bda0|s1'
-991866206: 726: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226800|s1'
-991866206: 727: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x822cf80|s1'
-991866206: 728: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bdc0|s1'
-991866206: 729: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bde0|s1'
-991866206: 730: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823be00|s1'
-991866206: 731: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823be20|s1'
-991866206: 732: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823be40|s1'
-991866206: 733: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823be60|s1'
-991866206: 734: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823be80|s1'
-991866206: 735: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823bea0|s1'
-991866206: 736: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823bec0|s1'
-991866206: 737: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823bee0|s1'
-991866206: 738: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823bf00|s1'
-991866206: 739: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bf20|s1'
-991866206: 740: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226840|s1'
-991866206: 741: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d000|s1'
-991866206: 742: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bf40|s1'
-991866206: 743: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bf60|s1'
-991866206: 744: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823bf80|s1'
-991866206: 745: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823bfa0|s1'
-991866206: 746: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823bfc0|s1'
-991866206: 747: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823bfe0|s1'
-991866206: 748: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f000|s1'
-991866206: 749: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823f020|s1'
-991866206: 750: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f040|s1'
-991866206: 751: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f060|s1'
-991866206: 752: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x823f080|s1'
-991866206: 753: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f0a0|s1'
-991866206: 754: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823f0c0|s1'
-991866206: 755: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823f0e0|s1'
-991866206: 756: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f100|s1'
-991866206: 757: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226880|s1'
-991866206: 758: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d080|s1'
-991866206: 759: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f120|s1'
-991866206: 760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f140|s1'
-991866206: 761: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823f160|s1'
-991866206: 762: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823f180|s1'
-991866206: 763: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f1a0|s1'
-991866206: 764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f1c0|s1'
-991866206: 765: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f1e0|s1'
-991866206: 766: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823f200|s1'
-991866206: 767: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f220|s1'
-991866206: 768: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f240|s1'
-991866206: 769: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x823f260|s1'
-991866206: 770: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f280|s1'
-991866206: 771: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823f2a0|s1'
-991866206: 772: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823f2c0|s1'
-991866206: 773: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f2e0|s1'
-991866206: 774: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82268c0|s1'
-991866206: 775: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d100|s1'
-991866206: 776: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f300|s1'
-991866206: 777: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f320|s1'
-991866206: 778: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823f340|s1'
-991866206: 779: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823f360|s1'
-991866206: 780: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f380|s1'
-991866206: 781: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f3a0|s1'
-991866206: 782: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f3c0|s1'
-991866206: 783: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823f3e0|s1'
-991866206: 784: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f400|s1'
-991866206: 785: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823f420|s1'
-991866206: 786: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823f440|s1'
-991866206: 787: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f460|s1'
-991866206: 788: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226900|s1'
-991866206: 789: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d180|s1'
-991866206: 790: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f480|s1'
-991866206: 791: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f4a0|s1'
-991866206: 792: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823f4c0|s1'
-991866206: 793: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823f4e0|s1'
-991866206: 794: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f500|s1'
-991866206: 795: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f520|s1'
-991866206: 796: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f540|s1'
-991866206: 797: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823f560|s1'
-991866206: 798: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f580|s1'
-991866206: 799: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823f5a0|s1'
-991866206: 800: checking heap
-991866206: 800: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823f5c0|s1'
-991866206: 801: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f5e0|s1'
-991866206: 802: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226940|s1'
-991866206: 803: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d200|s1'
-991866206: 804: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f600|s1'
-991866206: 805: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f620|s1'
-991866206: 806: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823f640|s1'
-991866206: 807: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823f660|s1'
-991866206: 808: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f680|s1'
-991866206: 809: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f6a0|s1'
-991866206: 810: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f6c0|s1'
-991866206: 811: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823f6e0|s1'
-991866206: 812: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f700|s1'
-991866206: 813: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f720|s1'
-991866206: 814: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x823f740|s1'
-991866206: 815: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f760|s1'
-991866206: 816: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823f780|s1'
-991866206: 817: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823f7a0|s1'
-991866206: 818: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f7c0|s1'
-991866206: 819: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226980|s1'
-991866206: 820: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d280|s1'
-991866206: 821: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f7e0|s1'
-991866206: 822: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f800|s1'
-991866206: 823: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823f820|s1'
-991866206: 824: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823f840|s1'
-991866206: 825: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f860|s1'
-991866206: 826: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f880|s1'
-991866206: 827: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823f8a0|s1'
-991866206: 828: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823f8c0|s1'
-991866206: 829: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823f8e0|s1'
-991866206: 830: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823f900|s1'
-991866206: 831: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823f920|s1'
-991866206: 832: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f940|s1'
-991866206: 833: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82269c0|s1'
-991866206: 834: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d300|s1'
-991866206: 835: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f960|s1'
-991866206: 836: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823f980|s1'
-991866206: 837: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823f9a0|s1'
-991866206: 838: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823f9c0|s1'
-991866206: 839: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823f9e0|s1'
-991866206: 840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fa00|s1'
-991866206: 841: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823fa20|s1'
-991866206: 842: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823fa40|s1'
-991866206: 843: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823fa60|s1'
-991866206: 844: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823fa80|s1'
-991866206: 845: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823faa0|s1'
-991866206: 846: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fac0|s1'
-991866206: 847: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226a00|s1'
-991866206: 848: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d380|s1'
-991866206: 849: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823fae0|s1'
-991866206: 850: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fb00|s1'
-991866206: 851: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823fb20|s1'
-991866206: 852: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823fb40|s1'
-991866206: 853: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823fb60|s1'
-991866206: 854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fb80|s1'
-991866206: 855: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823fba0|s1'
-991866206: 856: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823fbc0|s1'
-991866206: 857: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823fbe0|s1'
-991866206: 858: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823fc00|s1'
-991866206: 859: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823fc20|s1'
-991866206: 860: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fc40|s1'
-991866206: 861: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226a40|s1'
-991866206: 862: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d400|s1'
-991866206: 863: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823fc60|s1'
-991866206: 864: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fc80|s1'
-991866206: 865: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823fca0|s1'
-991866206: 866: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823fcc0|s1'
-991866206: 867: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823fce0|s1'
-991866206: 868: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fd00|s1'
-991866206: 869: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823fd20|s1'
-991866206: 870: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823fd40|s1'
-991866206: 871: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823fd60|s1'
-991866206: 872: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823fd80|s1'
-991866206: 873: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823fda0|s1'
-991866206: 874: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fdc0|s1'
-991866206: 875: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226a80|s1'
-991866206: 876: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d480|s1'
-991866206: 877: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823fde0|s1'
-991866206: 878: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fe00|s1'
-991866206: 879: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823fe20|s1'
-991866206: 880: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823fe40|s1'
-991866206: 881: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823fe60|s1'
-991866206: 882: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823fe80|s1'
-991866206: 883: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x823fea0|s1'
-991866206: 884: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x823fec0|s1'
-991866206: 885: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x823fee0|s1'
-991866206: 886: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x823ff00|s1'
-991866206: 887: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x823ff20|s1'
-991866206: 888: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823ff40|s1'
-991866206: 889: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226ac0|s1'
-991866206: 890: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d500|s1'
-991866206: 891: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823ff60|s1'
-991866206: 892: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x823ff80|s1'
-991866206: 893: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x823ffa0|s1'
-991866206: 894: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x823ffc0|s1'
-991866206: 895: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x823ffe0|s1'
-991866206: 896: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241000|s1'
-991866206: 897: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8241020|s1'
-991866206: 898: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8241040|s1'
-991866206: 899: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8241060|s1'
-991866206: 900: checking heap
-991866206: 900: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8241080|s1'
-991866206: 901: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82410a0|s1'
-991866206: 902: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82410c0|s1'
-991866206: 903: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x82410e0|s1'
-991866206: 904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241100|s1'
-991866206: 905: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226b00|s1'
-991866206: 906: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d580|s1'
-991866206: 907: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241120|s1'
-991866206: 908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241140|s1'
-991866206: 909: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241160|s1'
-991866206: 910: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241180|s1'
-991866206: 911: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82411a0|s1'
-991866206: 912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82411c0|s1'
-991866206: 913: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x82411e0|s1'
-991866206: 914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241200|s1'
-991866206: 915: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226b40|s1'
-991866206: 916: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d600|s1'
-991866206: 917: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241220|s1'
-991866206: 918: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241240|s1'
-991866206: 919: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241260|s1'
-991866206: 920: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241280|s1'
-991866206: 921: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82412a0|s1'
-991866206: 922: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82412c0|s1'
-991866206: 923: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x82412e0|s1'
-991866206: 924: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241300|s1'
-991866206: 925: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226b80|s1'
-991866206: 926: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d680|s1'
-991866206: 927: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241320|s1'
-991866206: 928: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241340|s1'
-991866206: 929: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241360|s1'
-991866206: 930: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241380|s1'
-991866206: 931: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82413a0|s1'
-991866206: 932: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82413c0|s1'
-991866206: 933: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x82413e0|s1'
-991866206: 934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241400|s1'
-991866206: 935: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226bc0|s1'
-991866206: 936: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d700|s1'
-991866206: 937: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241420|s1'
-991866206: 938: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241440|s1'
-991866206: 939: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241460|s1'
-991866206: 940: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241480|s1'
-991866206: 941: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82414a0|s1'
-991866206: 942: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82414c0|s1'
-991866206: 943: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x82414e0|s1'
-991866206: 944: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241500|s1'
-991866206: 945: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226c00|s1'
-991866206: 946: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d780|s1'
-991866206: 947: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241520|s1'
-991866206: 948: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241540|s1'
-991866206: 949: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241560|s1'
-991866206: 950: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241580|s1'
-991866206: 951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82415a0|s1'
-991866206: 952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82415c0|s1'
-991866206: 953: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x82415e0|s1'
-991866206: 954: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241600|s1'
-991866206: 955: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226c40|s1'
-991866206: 956: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d800|s1'
-991866206: 957: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241620|s1'
-991866206: 958: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241640|s1'
-991866206: 959: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241660|s1'
-991866206: 960: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241680|s1'
-991866206: 961: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82416a0|s1'
-991866206: 962: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82416c0|s1'
-991866206: 963: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x82416e0|s1'
-991866206: 964: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241700|s1'
-991866206: 965: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226c80|s1'
-991866206: 966: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d880|s1'
-991866206: 967: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241720|s1'
-991866206: 968: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241740|s1'
-991866206: 969: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241760|s1'
-991866206: 970: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241780|s1'
-991866206: 971: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82417a0|s1'
-991866206: 972: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82417c0|s1'
-991866206: 973: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x82417e0|s1'
-991866206: 974: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241800|s1'
-991866206: 975: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226cc0|s1'
-991866206: 976: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d900|s1'
-991866206: 977: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241820|s1'
-991866206: 978: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241840|s1'
-991866206: 979: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241860|s1'
-991866206: 980: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241880|s1'
-991866206: 981: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82418a0|s1'
-991866206: 982: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82418c0|s1'
-991866206: 983: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x82418e0|s1'
-991866206: 984: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241900|s1'
-991866206: 985: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226d00|s1'
-991866206: 986: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823d980|s1'
-991866206: 987: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241920|s1'
-991866206: 988: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241940|s1'
-991866206: 989: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241960|s1'
-991866206: 990: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241980|s1'
-991866206: 991: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82419a0|s1'
-991866206: 992: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82419c0|s1'
-991866206: 993: *** alloc: at 'uentryList.c:70' for 64 bytes, got '0x8226d40|s1'
-991866206: 994: *** free: at 'uentryList.c:78' pnt '0x82410c0|s2': size 32, alloced at 'uentryList.c:39'
-991866206: 995: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x82419e0|s1'
-991866206: 996: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241a00|s1'
-991866206: 997: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226d80|s1'
-991866206: 998: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823da00|s1'
-991866206: 999: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241a20|s1'
-991866206: 1000: checking heap
-991866206: 1000: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241a40|s1'
-991866206: 1001: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241a60|s1'
-991866206: 1002: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241a80|s1'
-991866206: 1003: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241aa0|s1'
-991866206: 1004: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241ac0|s1'
-991866206: 1005: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x8241ae0|s1'
-991866206: 1006: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241b00|s1'
-991866206: 1007: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226dc0|s1'
-991866206: 1008: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823da80|s1'
-991866206: 1009: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241b20|s1'
-991866206: 1010: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241b40|s1'
-991866206: 1011: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241b60|s1'
-991866206: 1012: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241b80|s1'
-991866206: 1013: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241ba0|s1'
-991866206: 1014: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82410c0|s3'
-991866206: 1015: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8241bc0|s1'
-991866206: 1016: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241be0|s1'
-991866206: 1017: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226e00|s1'
-991866206: 1018: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823db00|s1'
-991866206: 1019: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241c00|s1'
-991866206: 1020: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241c20|s1'
-991866206: 1021: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241c40|s1'
-991866206: 1022: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241c60|s1'
-991866206: 1023: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241c80|s1'
-991866206: 1024: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241ca0|s1'
-991866206: 1025: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x8241cc0|s1'
-991866206: 1026: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241ce0|s1'
-991866206: 1027: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226e40|s1'
-991866206: 1028: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823db80|s1'
-991866206: 1029: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241d00|s1'
-991866206: 1030: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241d20|s1'
-991866206: 1031: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241d40|s1'
-991866206: 1032: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241d60|s1'
-991866206: 1033: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241d80|s1'
-991866206: 1034: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241da0|s1'
-991866206: 1035: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x8241dc0|s1'
-991866206: 1036: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241de0|s1'
-991866206: 1037: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226e80|s1'
-991866206: 1038: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823dc00|s1'
-991866206: 1039: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241e00|s1'
-991866206: 1040: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241e20|s1'
-991866206: 1041: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241e40|s1'
-991866206: 1042: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241e60|s1'
-991866206: 1043: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241e80|s1'
-991866206: 1044: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241ea0|s1'
-991866206: 1045: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x8241ec0|s1'
-991866206: 1046: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241ee0|s1'
-991866206: 1047: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226ec0|s1'
-991866206: 1048: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823dc80|s1'
-991866206: 1049: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241f00|s1'
-991866206: 1050: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241f20|s1'
-991866206: 1051: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8241f40|s1'
-991866206: 1052: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8241f60|s1'
-991866206: 1053: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8241f80|s1'
-991866206: 1054: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241fa0|s1'
-991866206: 1055: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x8241fc0|s1'
-991866206: 1056: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8241fe0|s1'
-991866206: 1057: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226f00|s1'
-991866206: 1058: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823dd00|s1'
-991866206: 1059: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243000|s1'
-991866206: 1060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243020|s1'
-991866206: 1061: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243040|s1'
-991866206: 1062: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243060|s1'
-991866206: 1063: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243080|s1'
-991866206: 1064: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82430a0|s1'
-991866206: 1065: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x82430c0|s1'
-991866206: 1066: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82430e0|s1'
-991866206: 1067: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226f40|s1'
-991866206: 1068: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823dd80|s1'
-991866206: 1069: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243100|s1'
-991866206: 1070: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243120|s1'
-991866206: 1071: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243140|s1'
-991866206: 1072: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243160|s1'
-991866206: 1073: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243180|s1'
-991866206: 1074: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82431a0|s1'
-991866206: 1075: *** alloc: at 'uentryList.c:70' for 96 bytes, got '0x823de00|s1'
-991866206: 1076: *** free: at 'uentryList.c:78' pnt '0x8226d40|s2': size 64, alloced at 'uentryList.c:70'
-991866206: 1077: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x82431c0|s1'
-991866206: 1078: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82431e0|s1'
-991866206: 1079: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226f80|s1'
-991866206: 1080: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823de80|s1'
-991866206: 1081: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243200|s1'
-991866206: 1082: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243220|s1'
-991866206: 1083: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243240|s1'
-991866206: 1084: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243260|s1'
-991866206: 1085: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243280|s1'
-991866206: 1086: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82432a0|s1'
-991866206: 1087: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82432c0|s1'
-991866206: 1088: *** alloc: at 'ctbase.i:1826' for 8 bytes, got '0x82432e0|s1'
-991866206: 1089: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243300|s1'
-991866206: 1090: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243320|s1'
-991866206: 1091: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243340|s1'
-991866206: 1092: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243360|s1'
-991866206: 1093: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243380|s1'
-991866206: 1094: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82433a0|s1'
-991866206: 1095: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226fc0|s1'
-991866206: 1096: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823df00|s1'
-991866206: 1097: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82433c0|s1'
-991866206: 1098: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82433e0|s1'
-991866206: 1099: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243400|s1'
-991866206: 1100: checking heap
-991866206: 1100: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243420|s1'
-991866206: 1101: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243440|s1'
-991866206: 1102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243460|s1'
-991866206: 1103: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243480|s1'
-991866206: 1104: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8226d40|s3'
-991866206: 1105: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x823df80|s1'
-991866206: 1106: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82434a0|s1'
-991866206: 1107: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82434c0|s1'
-991866206: 1108: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82434e0|s1'
-991866206: 1109: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243500|s1'
-991866206: 1110: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243520|s1'
-991866206: 1111: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243540|s1'
-991866206: 1112: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243560|s1'
-991866206: 1113: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243580|s1'
-991866206: 1114: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82435a0|s1'
-991866206: 1115: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82435c0|s1'
-991866206: 1116: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82435e0|s1'
-991866206: 1117: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243600|s1'
-991866206: 1118: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245000|s1'
-991866206: 1119: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246000|s1'
-991866206: 1120: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243620|s1'
-991866206: 1121: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243640|s1'
-991866206: 1122: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243660|s1'
-991866206: 1123: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243680|s1'
-991866206: 1124: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82436a0|s1'
-991866206: 1125: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82436c0|s1'
-991866206: 1126: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82436e0|s1'
-991866206: 1127: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245040|s1'
-991866206: 1128: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246080|s1'
-991866206: 1129: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243700|s1'
-991866206: 1130: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243720|s1'
-991866206: 1131: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243740|s1'
-991866206: 1132: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243760|s1'
-991866206: 1133: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243780|s1'
-991866206: 1134: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82437a0|s1'
-991866206: 1135: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82437c0|s1'
-991866206: 1136: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82437e0|s1'
-991866206: 1137: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243800|s1'
-991866206: 1138: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243820|s1'
-991866206: 1139: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243840|s1'
-991866206: 1140: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243860|s1'
-991866206: 1141: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245080|s1'
-991866206: 1142: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246100|s1'
-991866206: 1143: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243880|s1'
-991866206: 1144: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82438a0|s1'
-991866206: 1145: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82438c0|s1'
-991866206: 1146: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82438e0|s1'
-991866206: 1147: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243900|s1'
-991866206: 1148: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243920|s1'
-991866206: 1149: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243940|s1'
-991866206: 1150: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82450c0|s1'
-991866206: 1151: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246180|s1'
-991866206: 1152: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243960|s1'
-991866206: 1153: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243980|s1'
-991866206: 1154: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82439a0|s1'
-991866206: 1155: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82439c0|s1'
-991866206: 1156: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82439e0|s1'
-991866206: 1157: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243a00|s1'
-991866206: 1158: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243a20|s1'
-991866206: 1159: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243a40|s1'
-991866206: 1160: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243a60|s1'
-991866206: 1161: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243a80|s1'
-991866206: 1162: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243aa0|s1'
-991866206: 1163: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243ac0|s1'
-991866206: 1164: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243ae0|s1'
-991866206: 1165: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243b00|s1'
-991866206: 1166: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243b20|s1'
-991866206: 1167: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243b40|s1'
-991866206: 1168: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243b60|s1'
-991866206: 1169: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243b80|s1'
-991866206: 1170: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243ba0|s1'
-991866206: 1171: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243bc0|s1'
-991866206: 1172: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243be0|s1'
-991866206: 1173: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243c00|s1'
-991866206: 1174: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243c20|s1'
-991866206: 1175: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243c40|s1'
-991866206: 1176: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243c60|s1'
-991866206: 1177: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243c80|s1'
-991866206: 1178: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243ca0|s1'
-991866206: 1179: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243cc0|s1'
-991866206: 1180: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243ce0|s1'
-991866206: 1181: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245100|s1'
-991866206: 1182: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246200|s1'
-991866206: 1183: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243d00|s1'
-991866206: 1184: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243d20|s1'
-991866206: 1185: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243d40|s1'
-991866206: 1186: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243d60|s1'
-991866206: 1187: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243d80|s1'
-991866206: 1188: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243da0|s1'
-991866206: 1189: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243dc0|s1'
-991866206: 1190: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243de0|s1'
-991866206: 1191: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243e00|s1'
-991866206: 1192: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243e20|s1'
-991866206: 1193: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243e40|s1'
-991866206: 1194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243e60|s1'
-991866206: 1195: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245140|s1'
-991866206: 1196: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246280|s1'
-991866206: 1197: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243e80|s1'
-991866206: 1198: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243ea0|s1'
-991866206: 1199: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8243ec0|s1'
-991866206: 1200: checking heap
-991866206: 1200: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8243ee0|s1'
-991866206: 1201: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8243f00|s1'
-991866206: 1202: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243f20|s1'
-991866206: 1203: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8243f40|s1'
-991866206: 1204: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8243f60|s1'
-991866206: 1205: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8243f80|s1'
-991866206: 1206: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8243fa0|s1'
-991866206: 1207: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8243fc0|s1'
-991866206: 1208: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8243fe0|s1'
-991866206: 1209: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245180|s1'
-991866206: 1210: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246300|s1'
-991866206: 1211: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248000|s1'
-991866206: 1212: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248020|s1'
-991866206: 1213: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248040|s1'
-991866206: 1214: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248060|s1'
-991866206: 1215: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248080|s1'
-991866206: 1216: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82480a0|s1'
-991866206: 1217: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82480c0|s1'
-991866206: 1218: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82480e0|s1'
-991866206: 1219: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248100|s1'
-991866206: 1220: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248120|s1'
-991866206: 1221: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248140|s1'
-991866206: 1222: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248160|s1'
-991866206: 1223: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82451c0|s1'
-991866206: 1224: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246380|s1'
-991866206: 1225: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248180|s1'
-991866206: 1226: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82481a0|s1'
-991866206: 1227: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82481c0|s1'
-991866206: 1228: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82481e0|s1'
-991866206: 1229: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248200|s1'
-991866206: 1230: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248220|s1'
-991866206: 1231: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8248240|s1'
-991866206: 1232: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8248260|s1'
-991866206: 1233: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248280|s1'
-991866206: 1234: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82482a0|s1'
-991866206: 1235: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82482c0|s1'
-991866206: 1236: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82482e0|s1'
-991866206: 1237: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245200|s1'
-991866206: 1238: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246400|s1'
-991866206: 1239: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248300|s1'
-991866206: 1240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248320|s1'
-991866206: 1241: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248340|s1'
-991866206: 1242: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248360|s1'
-991866206: 1243: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248380|s1'
-991866206: 1244: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82483a0|s1'
-991866206: 1245: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82483c0|s1'
-991866206: 1246: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82483e0|s1'
-991866206: 1247: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248400|s1'
-991866206: 1248: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248420|s1'
-991866206: 1249: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248440|s1'
-991866206: 1250: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248460|s1'
-991866206: 1251: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245240|s1'
-991866206: 1252: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246480|s1'
-991866206: 1253: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248480|s1'
-991866206: 1254: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82484a0|s1'
-991866206: 1255: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82484c0|s1'
-991866206: 1256: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82484e0|s1'
-991866206: 1257: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248500|s1'
-991866206: 1258: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248520|s1'
-991866206: 1259: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8248540|s1'
-991866206: 1260: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8248560|s1'
-991866206: 1261: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248580|s1'
-991866206: 1262: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82485a0|s1'
-991866206: 1263: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82485c0|s1'
-991866206: 1264: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82485e0|s1'
-991866206: 1265: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245280|s1'
-991866206: 1266: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246500|s1'
-991866206: 1267: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248600|s1'
-991866206: 1268: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248620|s1'
-991866206: 1269: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248640|s1'
-991866206: 1270: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248660|s1'
-991866206: 1271: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248680|s1'
-991866206: 1272: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82486a0|s1'
-991866206: 1273: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82486c0|s1'
-991866206: 1274: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82486e0|s1'
-991866206: 1275: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248700|s1'
-991866206: 1276: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248720|s1'
-991866206: 1277: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248740|s1'
-991866206: 1278: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248760|s1'
-991866206: 1279: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82452c0|s1'
-991866206: 1280: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246580|s1'
-991866206: 1281: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248780|s1'
-991866206: 1282: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82487a0|s1'
-991866206: 1283: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82487c0|s1'
-991866206: 1284: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82487e0|s1'
-991866206: 1285: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248800|s1'
-991866206: 1286: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248820|s1'
-991866206: 1287: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8248840|s1'
-991866206: 1288: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8248860|s1'
-991866206: 1289: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248880|s1'
-991866206: 1290: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82488a0|s1'
-991866206: 1291: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82488c0|s1'
-991866206: 1292: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82488e0|s1'
-991866206: 1293: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245300|s1'
-991866206: 1294: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246600|s1'
-991866206: 1295: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248900|s1'
-991866206: 1296: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248920|s1'
-991866206: 1297: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248940|s1'
-991866206: 1298: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248960|s1'
-991866206: 1299: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248980|s1'
-991866206: 1300: checking heap
-991866206: 1300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82489a0|s1'
-991866206: 1301: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82489c0|s1'
-991866206: 1302: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82489e0|s1'
-991866206: 1303: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248a00|s1'
-991866206: 1304: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248a20|s1'
-991866206: 1305: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248a40|s1'
-991866206: 1306: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248a60|s1'
-991866206: 1307: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245340|s1'
-991866206: 1308: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246680|s1'
-991866206: 1309: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248a80|s1'
-991866206: 1310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248aa0|s1'
-991866206: 1311: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248ac0|s1'
-991866206: 1312: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248ae0|s1'
-991866206: 1313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248b00|s1'
-991866206: 1314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248b20|s1'
-991866206: 1315: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8248b40|s1'
-991866206: 1316: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8248b60|s1'
-991866206: 1317: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248b80|s1'
-991866206: 1318: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248ba0|s1'
-991866206: 1319: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248bc0|s1'
-991866206: 1320: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248be0|s1'
-991866206: 1321: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245380|s1'
-991866206: 1322: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246700|s1'
-991866206: 1323: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248c00|s1'
-991866206: 1324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248c20|s1'
-991866206: 1325: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248c40|s1'
-991866206: 1326: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248c60|s1'
-991866206: 1327: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248c80|s1'
-991866206: 1328: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248ca0|s1'
-991866206: 1329: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8248cc0|s1'
-991866206: 1330: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8248ce0|s1'
-991866206: 1331: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248d00|s1'
-991866206: 1332: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248d20|s1'
-991866206: 1333: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248d40|s1'
-991866206: 1334: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248d60|s1'
-991866206: 1335: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82453c0|s1'
-991866206: 1336: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246780|s1'
-991866206: 1337: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248d80|s1'
-991866206: 1338: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248da0|s1'
-991866206: 1339: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248dc0|s1'
-991866206: 1340: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248de0|s1'
-991866206: 1341: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248e00|s1'
-991866206: 1342: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248e20|s1'
-991866206: 1343: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8248e40|s1'
-991866206: 1344: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8248e60|s1'
-991866206: 1345: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8248e80|s1'
-991866206: 1346: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8248ea0|s1'
-991866206: 1347: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8248ec0|s1'
-991866206: 1348: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248ee0|s1'
-991866206: 1349: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245400|s1'
-991866206: 1350: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246800|s1'
-991866206: 1351: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248f00|s1'
-991866206: 1352: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248f20|s1'
-991866206: 1353: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8248f40|s1'
-991866206: 1354: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8248f60|s1'
-991866206: 1355: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248f80|s1'
-991866206: 1356: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248fa0|s1'
-991866206: 1357: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8248fc0|s1'
-991866206: 1358: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245440|s1'
-991866206: 1359: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246880|s1'
-991866206: 1360: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8248fe0|s1'
-991866206: 1361: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a000|s1'
-991866206: 1362: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a020|s1'
-991866206: 1363: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a040|s1'
-991866206: 1364: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a060|s1'
-991866206: 1365: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a080|s1'
-991866206: 1366: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824a0a0|s1'
-991866206: 1367: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824a0c0|s1'
-991866206: 1368: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824a0e0|s1'
-991866206: 1369: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824a100|s1'
-991866206: 1370: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824a120|s1'
-991866206: 1371: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a140|s1'
-991866206: 1372: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245480|s1'
-991866206: 1373: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246900|s1'
-991866206: 1374: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a160|s1'
-991866206: 1375: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a180|s1'
-991866206: 1376: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a1a0|s1'
-991866206: 1377: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a1c0|s1'
-991866206: 1378: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a1e0|s1'
-991866206: 1379: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a200|s1'
-991866206: 1380: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a220|s1'
-991866206: 1381: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82454c0|s1'
-991866206: 1382: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246980|s1'
-991866206: 1383: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a240|s1'
-991866206: 1384: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a260|s1'
-991866206: 1385: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a280|s1'
-991866206: 1386: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a2a0|s1'
-991866206: 1387: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a2c0|s1'
-991866206: 1388: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a2e0|s1'
-991866206: 1389: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824a300|s1'
-991866206: 1390: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824a320|s1'
-991866206: 1391: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824a340|s1'
-991866206: 1392: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824a360|s1'
-991866206: 1393: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824a380|s1'
-991866206: 1394: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a3a0|s1'
-991866206: 1395: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245500|s1'
-991866206: 1396: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246a00|s1'
-991866206: 1397: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a3c0|s1'
-991866206: 1398: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a3e0|s1'
-991866206: 1399: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a400|s1'
-991866206: 1400: checking heap
-991866206: 1400: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a420|s1'
-991866206: 1401: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a440|s1'
-991866206: 1402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a460|s1'
-991866206: 1403: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824a480|s1'
-991866206: 1404: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824a4a0|s1'
-991866206: 1405: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824a4c0|s1'
-991866206: 1406: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824a4e0|s1'
-991866206: 1407: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824a500|s1'
-991866206: 1408: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a520|s1'
-991866206: 1409: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245540|s1'
-991866206: 1410: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246a80|s1'
-991866206: 1411: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a540|s1'
-991866206: 1412: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a560|s1'
-991866206: 1413: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a580|s1'
-991866206: 1414: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a5a0|s1'
-991866206: 1415: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a5c0|s1'
-991866206: 1416: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a5e0|s1'
-991866206: 1417: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824a600|s1'
-991866206: 1418: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824a620|s1'
-991866206: 1419: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824a640|s1'
-991866206: 1420: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824a660|s1'
-991866206: 1421: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824a680|s1'
-991866206: 1422: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a6a0|s1'
-991866206: 1423: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245580|s1'
-991866206: 1424: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246b00|s1'
-991866206: 1425: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a6c0|s1'
-991866206: 1426: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a6e0|s1'
-991866206: 1427: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a700|s1'
-991866206: 1428: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a720|s1'
-991866206: 1429: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a740|s1'
-991866206: 1430: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a760|s1'
-991866206: 1431: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824a780|s1'
-991866206: 1432: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824a7a0|s1'
-991866206: 1433: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824a7c0|s1'
-991866206: 1434: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824a7e0|s1'
-991866206: 1435: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824a800|s1'
-991866206: 1436: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a820|s1'
-991866206: 1437: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82455c0|s1'
-991866206: 1438: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246b80|s1'
-991866206: 1439: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a840|s1'
-991866206: 1440: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a860|s1'
-991866206: 1441: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824a880|s1'
-991866206: 1442: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824a8a0|s1'
-991866206: 1443: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a8c0|s1'
-991866206: 1444: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a8e0|s1'
-991866206: 1445: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824a900|s1'
-991866206: 1446: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824a920|s1'
-991866206: 1447: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824a940|s1'
-991866206: 1448: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824a960|s1'
-991866206: 1449: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824a980|s1'
-991866206: 1450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a9a0|s1'
-991866206: 1451: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245600|s1'
-991866206: 1452: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246c00|s1'
-991866206: 1453: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824a9c0|s1'
-991866206: 1454: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824a9e0|s1'
-991866206: 1455: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824aa00|s1'
-991866206: 1456: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824aa20|s1'
-991866206: 1457: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824aa40|s1'
-991866206: 1458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824aa60|s1'
-991866206: 1459: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824aa80|s1'
-991866206: 1460: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824aaa0|s1'
-991866206: 1461: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824aac0|s1'
-991866206: 1462: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824aae0|s1'
-991866206: 1463: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824ab00|s1'
-991866206: 1464: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ab20|s1'
-991866206: 1465: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245640|s1'
-991866206: 1466: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246c80|s1'
-991866206: 1467: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824ab40|s1'
-991866206: 1468: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ab60|s1'
-991866206: 1469: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824ab80|s1'
-991866206: 1470: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824aba0|s1'
-991866206: 1471: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824abc0|s1'
-991866206: 1472: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824abe0|s1'
-991866206: 1473: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824ac00|s1'
-991866206: 1474: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824ac20|s1'
-991866206: 1475: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824ac40|s1'
-991866206: 1476: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824ac60|s1'
-991866206: 1477: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824ac80|s1'
-991866206: 1478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824aca0|s1'
-991866206: 1479: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245680|s1'
-991866206: 1480: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246d00|s1'
-991866206: 1481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824acc0|s1'
-991866206: 1482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ace0|s1'
-991866206: 1483: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824ad00|s1'
-991866206: 1484: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824ad20|s1'
-991866206: 1485: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824ad40|s1'
-991866206: 1486: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ad60|s1'
-991866206: 1487: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824ad80|s1'
-991866206: 1488: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824ada0|s1'
-991866206: 1489: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824adc0|s1'
-991866206: 1490: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824ade0|s1'
-991866206: 1491: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824ae00|s1'
-991866206: 1492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ae20|s1'
-991866206: 1493: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82456c0|s1'
-991866206: 1494: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246d80|s1'
-991866206: 1495: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824ae40|s1'
-991866206: 1496: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ae60|s1'
-991866206: 1497: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824ae80|s1'
-991866206: 1498: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824aea0|s1'
-991866206: 1499: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824aec0|s1'
-991866206: 1500: checking heap
-991866206: 1500: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824aee0|s1'
-991866206: 1501: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824af00|s1'
-991866206: 1502: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824af20|s1'
-991866206: 1503: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824af40|s1'
-991866206: 1504: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824af60|s1'
-991866206: 1505: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824af80|s1'
-991866206: 1506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824afa0|s1'
-991866206: 1507: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245700|s1'
-991866206: 1508: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246e00|s1'
-991866206: 1509: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824afc0|s1'
-991866206: 1510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824afe0|s1'
-991866206: 1511: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c000|s1'
-991866206: 1512: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c020|s1'
-991866206: 1513: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c040|s1'
-991866206: 1514: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c060|s1'
-991866206: 1515: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c080|s1'
-991866206: 1516: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245740|s1'
-991866206: 1517: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246e80|s1'
-991866206: 1518: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c0a0|s1'
-991866206: 1519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c0c0|s1'
-991866206: 1520: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c0e0|s1'
-991866206: 1521: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c100|s1'
-991866206: 1522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c120|s1'
-991866206: 1523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c140|s1'
-991866206: 1524: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824c160|s1'
-991866206: 1525: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824c180|s1'
-991866206: 1526: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824c1a0|s1'
-991866206: 1527: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824c1c0|s1'
-991866206: 1528: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824c1e0|s1'
-991866206: 1529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c200|s1'
-991866206: 1530: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245780|s1'
-991866206: 1531: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246f00|s1'
-991866206: 1532: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c220|s1'
-991866206: 1533: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c240|s1'
-991866206: 1534: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c260|s1'
-991866206: 1535: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c280|s1'
-991866206: 1536: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c2a0|s1'
-991866206: 1537: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c2c0|s1'
-991866206: 1538: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c2e0|s1'
-991866206: 1539: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82457c0|s1'
-991866206: 1540: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8246f80|s1'
-991866206: 1541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c300|s1'
-991866206: 1542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c320|s1'
-991866206: 1543: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c340|s1'
-991866206: 1544: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c360|s1'
-991866206: 1545: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c380|s1'
-991866206: 1546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c3a0|s1'
-991866206: 1547: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824c3c0|s1'
-991866206: 1548: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824c3e0|s1'
-991866206: 1549: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824c400|s1'
-991866206: 1550: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824c420|s1'
-991866206: 1551: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824c440|s1'
-991866206: 1552: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c460|s1'
-991866206: 1553: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245800|s1'
-991866206: 1554: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e000|s1'
-991866206: 1555: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c480|s1'
-991866206: 1556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c4a0|s1'
-991866206: 1557: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c4c0|s1'
-991866206: 1558: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c4e0|s1'
-991866206: 1559: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c500|s1'
-991866206: 1560: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c520|s1'
-991866206: 1561: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c540|s1'
-991866206: 1562: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245840|s1'
-991866206: 1563: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e080|s1'
-991866206: 1564: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c560|s1'
-991866206: 1565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c580|s1'
-991866206: 1566: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c5a0|s1'
-991866206: 1567: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c5c0|s1'
-991866206: 1568: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c5e0|s1'
-991866206: 1569: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c600|s1'
-991866206: 1570: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c620|s1'
-991866206: 1571: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c640|s1'
-991866206: 1572: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824c660|s1'
-991866206: 1573: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824c680|s1'
-991866206: 1574: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824c6a0|s1'
-991866206: 1575: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824c6c0|s1'
-991866206: 1576: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824c6e0|s1'
-991866206: 1577: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c700|s1'
-991866206: 1578: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245880|s1'
-991866206: 1579: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e100|s1'
-991866206: 1580: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c720|s1'
-991866206: 1581: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c740|s1'
-991866206: 1582: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c760|s1'
-991866206: 1583: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c780|s1'
-991866206: 1584: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c7a0|s1'
-991866206: 1585: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c7c0|s1'
-991866206: 1586: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c7e0|s1'
-991866206: 1587: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82458c0|s1'
-991866206: 1588: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e180|s1'
-991866206: 1589: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c800|s1'
-991866206: 1590: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c820|s1'
-991866206: 1591: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824c840|s1'
-991866206: 1592: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824c860|s1'
-991866206: 1593: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c880|s1'
-991866206: 1594: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c8a0|s1'
-991866206: 1595: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c8c0|s1'
-991866206: 1596: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c8e0|s1'
-991866206: 1597: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824c900|s1'
-991866206: 1598: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824c920|s1'
-991866206: 1599: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824c940|s1'
-991866206: 1600: checking heap
-991866206: 1600: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824c960|s1'
-991866206: 1601: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824c980|s1'
-991866206: 1602: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c9a0|s1'
-991866206: 1603: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245900|s1'
-991866206: 1604: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e200|s1'
-991866206: 1605: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824c9c0|s1'
-991866206: 1606: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824c9e0|s1'
-991866206: 1607: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824ca00|s1'
-991866206: 1608: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824ca20|s1'
-991866206: 1609: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824ca40|s1'
-991866206: 1610: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ca60|s1'
-991866206: 1611: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824ca80|s1'
-991866206: 1612: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824caa0|s1'
-991866206: 1613: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824cac0|s1'
-991866206: 1614: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824cae0|s1'
-991866206: 1615: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824cb00|s1'
-991866206: 1616: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cb20|s1'
-991866206: 1617: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245940|s1'
-991866206: 1618: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e280|s1'
-991866206: 1619: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824cb40|s1'
-991866206: 1620: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cb60|s1'
-991866206: 1621: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824cb80|s1'
-991866206: 1622: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824cba0|s1'
-991866206: 1623: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824cbc0|s1'
-991866206: 1624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cbe0|s1'
-991866206: 1625: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824cc00|s1'
-991866206: 1626: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824cc20|s1'
-991866206: 1627: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824cc40|s1'
-991866206: 1628: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824cc60|s1'
-991866206: 1629: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824cc80|s1'
-991866206: 1630: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cca0|s1'
-991866206: 1631: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245980|s1'
-991866206: 1632: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e300|s1'
-991866206: 1633: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824ccc0|s1'
-991866206: 1634: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cce0|s1'
-991866206: 1635: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824cd00|s1'
-991866206: 1636: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824cd20|s1'
-991866206: 1637: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824cd40|s1'
-991866206: 1638: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cd60|s1'
-991866206: 1639: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824cd80|s1'
-991866206: 1640: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824cda0|s1'
-991866206: 1641: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824cdc0|s1'
-991866206: 1642: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824cde0|s1'
-991866206: 1643: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824ce00|s1'
-991866206: 1644: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ce20|s1'
-991866206: 1645: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82459c0|s1'
-991866206: 1646: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e380|s1'
-991866206: 1647: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824ce40|s1'
-991866206: 1648: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824ce60|s1'
-991866206: 1649: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x824ce80|s1'
-991866206: 1650: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x824cea0|s1'
-991866206: 1651: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824cec0|s1'
-991866206: 1652: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cee0|s1'
-991866206: 1653: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x824cf00|s1'
-991866206: 1654: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x824cf20|s1'
-991866206: 1655: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x824cf40|s1'
-991866206: 1656: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x824cf60|s1'
-991866206: 1657: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x824cf80|s1'
-991866206: 1658: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cfa0|s1'
-991866206: 1659: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245a00|s1'
-991866206: 1660: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e400|s1'
-991866206: 1661: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x824cfc0|s1'
-991866206: 1662: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x824cfe0|s1'
-991866206: 1663: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250000|s1'
-991866206: 1664: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250020|s1'
-991866206: 1665: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250040|s1'
-991866206: 1666: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250060|s1'
-991866206: 1667: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250080|s1'
-991866206: 1668: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245a40|s1'
-991866206: 1669: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e480|s1'
-991866206: 1670: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82500a0|s1'
-991866206: 1671: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82500c0|s1'
-991866206: 1672: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82500e0|s1'
-991866206: 1673: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250100|s1'
-991866206: 1674: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250120|s1'
-991866206: 1675: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250140|s1'
-991866206: 1676: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250160|s1'
-991866206: 1677: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250180|s1'
-991866206: 1678: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82501a0|s1'
-991866206: 1679: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82501c0|s1'
-991866206: 1680: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82501e0|s1'
-991866206: 1681: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250200|s1'
-991866206: 1682: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245a80|s1'
-991866206: 1683: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e500|s1'
-991866206: 1684: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250220|s1'
-991866206: 1685: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250240|s1'
-991866206: 1686: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250260|s1'
-991866206: 1687: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250280|s1'
-991866206: 1688: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82502a0|s1'
-991866206: 1689: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82502c0|s1'
-991866206: 1690: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82502e0|s1'
-991866206: 1691: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245ac0|s1'
-991866206: 1692: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e580|s1'
-991866206: 1693: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250300|s1'
-991866206: 1694: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250320|s1'
-991866206: 1695: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250340|s1'
-991866206: 1696: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250360|s1'
-991866206: 1697: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250380|s1'
-991866206: 1698: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82503a0|s1'
-991866206: 1699: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82503c0|s1'
-991866206: 1700: checking heap
-991866206: 1700: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82503e0|s1'
-991866206: 1701: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250400|s1'
-991866206: 1702: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8250420|s1'
-991866206: 1703: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8250440|s1'
-991866206: 1704: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250460|s1'
-991866206: 1705: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245b00|s1'
-991866206: 1706: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e600|s1'
-991866206: 1707: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250480|s1'
-991866206: 1708: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82504a0|s1'
-991866206: 1709: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82504c0|s1'
-991866206: 1710: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82504e0|s1'
-991866206: 1711: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250500|s1'
-991866206: 1712: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250520|s1'
-991866206: 1713: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250540|s1'
-991866206: 1714: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250560|s1'
-991866206: 1715: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250580|s1'
-991866206: 1716: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82505a0|s1'
-991866206: 1717: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82505c0|s1'
-991866206: 1718: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82505e0|s1'
-991866206: 1719: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245b40|s1'
-991866206: 1720: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e680|s1'
-991866206: 1721: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250600|s1'
-991866206: 1722: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250620|s1'
-991866206: 1723: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250640|s1'
-991866206: 1724: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250660|s1'
-991866206: 1725: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250680|s1'
-991866206: 1726: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82506a0|s1'
-991866206: 1727: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82506c0|s1'
-991866206: 1728: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82506e0|s1'
-991866206: 1729: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250700|s1'
-991866206: 1730: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8250720|s1'
-991866206: 1731: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8250740|s1'
-991866206: 1732: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250760|s1'
-991866206: 1733: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245b80|s1'
-991866206: 1734: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e700|s1'
-991866206: 1735: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250780|s1'
-991866206: 1736: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82507a0|s1'
-991866206: 1737: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82507c0|s1'
-991866206: 1738: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82507e0|s1'
-991866206: 1739: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250800|s1'
-991866206: 1740: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250820|s1'
-991866206: 1741: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250840|s1'
-991866206: 1742: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250860|s1'
-991866206: 1743: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250880|s1'
-991866206: 1744: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82508a0|s1'
-991866206: 1745: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82508c0|s1'
-991866206: 1746: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82508e0|s1'
-991866206: 1747: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245bc0|s1'
-991866206: 1748: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e780|s1'
-991866206: 1749: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250900|s1'
-991866206: 1750: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250920|s1'
-991866206: 1751: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250940|s1'
-991866206: 1752: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250960|s1'
-991866206: 1753: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250980|s1'
-991866206: 1754: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82509a0|s1'
-991866206: 1755: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82509c0|s1'
-991866206: 1756: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82509e0|s1'
-991866206: 1757: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250a00|s1'
-991866206: 1758: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8250a20|s1'
-991866206: 1759: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8250a40|s1'
-991866206: 1760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250a60|s1'
-991866206: 1761: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245c00|s1'
-991866206: 1762: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e800|s1'
-991866206: 1763: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250a80|s1'
-991866206: 1764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250aa0|s1'
-991866206: 1765: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250ac0|s1'
-991866206: 1766: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250ae0|s1'
-991866206: 1767: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250b00|s1'
-991866206: 1768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250b20|s1'
-991866206: 1769: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250b40|s1'
-991866206: 1770: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250b60|s1'
-991866206: 1771: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250b80|s1'
-991866206: 1772: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8250ba0|s1'
-991866206: 1773: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8250bc0|s1'
-991866206: 1774: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250be0|s1'
-991866206: 1775: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245c40|s1'
-991866206: 1776: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e880|s1'
-991866206: 1777: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250c00|s1'
-991866206: 1778: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250c20|s1'
-991866206: 1779: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250c40|s1'
-991866206: 1780: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250c60|s1'
-991866206: 1781: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250c80|s1'
-991866206: 1782: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250ca0|s1'
-991866206: 1783: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250cc0|s1'
-991866206: 1784: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250ce0|s1'
-991866206: 1785: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250d00|s1'
-991866206: 1786: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8250d20|s1'
-991866206: 1787: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8250d40|s1'
-991866206: 1788: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250d60|s1'
-991866206: 1789: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245c80|s1'
-991866206: 1790: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e900|s1'
-991866206: 1791: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250d80|s1'
-991866206: 1792: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250da0|s1'
-991866206: 1793: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250dc0|s1'
-991866206: 1794: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250de0|s1'
-991866206: 1795: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250e00|s1'
-991866206: 1796: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250e20|s1'
-991866206: 1797: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250e40|s1'
-991866206: 1798: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250e60|s1'
-991866206: 1799: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8250e80|s1'
-991866206: 1800: checking heap
-991866206: 1800: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8250ea0|s1'
-991866206: 1801: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8250ec0|s1'
-991866206: 1802: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250ee0|s1'
-991866206: 1803: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245cc0|s1'
-991866206: 1804: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824e980|s1'
-991866206: 1805: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250f00|s1'
-991866206: 1806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250f20|s1'
-991866206: 1807: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8250f40|s1'
-991866206: 1808: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8250f60|s1'
-991866206: 1809: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8250f80|s1'
-991866206: 1810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8250fa0|s1'
-991866206: 1811: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8250fc0|s1'
-991866206: 1812: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8250fe0|s1'
-991866206: 1813: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8252000|s1'
-991866206: 1814: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8252020|s1'
-991866206: 1815: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8252040|s1'
-991866206: 1816: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252060|s1'
-991866206: 1817: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245d00|s1'
-991866206: 1818: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ea00|s1'
-991866206: 1819: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252080|s1'
-991866206: 1820: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82520a0|s1'
-991866206: 1821: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82520c0|s1'
-991866206: 1822: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82520e0|s1'
-991866206: 1823: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252100|s1'
-991866206: 1824: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252120|s1'
-991866206: 1825: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252140|s1'
-991866206: 1826: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245d40|s1'
-991866206: 1827: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ea80|s1'
-991866206: 1828: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252160|s1'
-991866206: 1829: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252180|s1'
-991866206: 1830: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82521a0|s1'
-991866206: 1831: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82521c0|s1'
-991866206: 1832: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82521e0|s1'
-991866206: 1833: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252200|s1'
-991866206: 1834: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252220|s1'
-991866206: 1835: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252240|s1'
-991866206: 1836: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252260|s1'
-991866206: 1837: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8252280|s1'
-991866206: 1838: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82522a0|s1'
-991866206: 1839: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82522c0|s1'
-991866206: 1840: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82522e0|s1'
-991866206: 1841: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252300|s1'
-991866206: 1842: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245d80|s1'
-991866206: 1843: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824eb00|s1'
-991866206: 1844: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252320|s1'
-991866206: 1845: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252340|s1'
-991866206: 1846: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252360|s1'
-991866206: 1847: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252380|s1'
-991866206: 1848: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82523a0|s1'
-991866206: 1849: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82523c0|s1'
-991866206: 1850: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82523e0|s1'
-991866206: 1851: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245dc0|s1'
-991866206: 1852: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824eb80|s1'
-991866206: 1853: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252400|s1'
-991866206: 1854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252420|s1'
-991866206: 1855: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252440|s1'
-991866206: 1856: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252460|s1'
-991866206: 1857: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252480|s1'
-991866206: 1858: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82524a0|s1'
-991866206: 1859: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82524c0|s1'
-991866206: 1860: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82524e0|s1'
-991866206: 1861: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252500|s1'
-991866206: 1862: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8252520|s1'
-991866206: 1863: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8252540|s1'
-991866206: 1864: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8252560|s1'
-991866206: 1865: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8252580|s1'
-991866206: 1866: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82525a0|s1'
-991866206: 1867: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245e00|s1'
-991866206: 1868: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ec00|s1'
-991866206: 1869: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82525c0|s1'
-991866206: 1870: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82525e0|s1'
-991866206: 1871: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252600|s1'
-991866206: 1872: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252620|s1'
-991866206: 1873: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252640|s1'
-991866206: 1874: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252660|s1'
-991866206: 1875: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252680|s1'
-991866206: 1876: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245e40|s1'
-991866206: 1877: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ec80|s1'
-991866206: 1878: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82526a0|s1'
-991866206: 1879: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82526c0|s1'
-991866206: 1880: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82526e0|s1'
-991866206: 1881: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252700|s1'
-991866206: 1882: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252720|s1'
-991866206: 1883: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252740|s1'
-991866206: 1884: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252760|s1'
-991866206: 1885: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8252780|s1'
-991866206: 1886: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82527a0|s1'
-991866206: 1887: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82527c0|s1'
-991866206: 1888: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82527e0|s1'
-991866206: 1889: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252800|s1'
-991866206: 1890: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245e80|s1'
-991866206: 1891: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ed00|s1'
-991866206: 1892: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252820|s1'
-991866206: 1893: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252840|s1'
-991866206: 1894: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252860|s1'
-991866206: 1895: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252880|s1'
-991866206: 1896: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82528a0|s1'
-991866206: 1897: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82528c0|s1'
-991866206: 1898: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82528e0|s1'
-991866206: 1899: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245ec0|s1'
-991866206: 1900: checking heap
-991866206: 1900: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ed80|s1'
-991866206: 1901: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252900|s1'
-991866206: 1902: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252920|s1'
-991866206: 1903: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252940|s1'
-991866206: 1904: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252960|s1'
-991866206: 1905: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252980|s1'
-991866206: 1906: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82529a0|s1'
-991866206: 1907: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82529c0|s1'
-991866206: 1908: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82529e0|s1'
-991866206: 1909: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8252a00|s1'
-991866206: 1910: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252a20|s1'
-991866206: 1911: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8252a40|s1'
-991866206: 1912: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8252a60|s1'
-991866206: 1913: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8252a80|s1'
-991866206: 1914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252aa0|s1'
-991866206: 1915: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245f00|s1'
-991866206: 1916: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ee00|s1'
-991866206: 1917: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252ac0|s1'
-991866206: 1918: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252ae0|s1'
-991866206: 1919: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252b00|s1'
-991866206: 1920: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252b20|s1'
-991866206: 1921: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252b40|s1'
-991866206: 1922: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252b60|s1'
-991866206: 1923: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252b80|s1'
-991866206: 1924: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252ba0|s1'
-991866206: 1925: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252bc0|s1'
-991866206: 1926: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8252be0|s1'
-991866206: 1927: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8252c00|s1'
-991866206: 1928: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8252c20|s1'
-991866206: 1929: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8252c40|s1'
-991866206: 1930: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252c60|s1'
-991866206: 1931: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245f40|s1'
-991866206: 1932: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ee80|s1'
-991866206: 1933: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252c80|s1'
-991866206: 1934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252ca0|s1'
-991866206: 1935: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252cc0|s1'
-991866206: 1936: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252ce0|s1'
-991866206: 1937: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252d00|s1'
-991866206: 1938: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252d20|s1'
-991866206: 1939: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252d40|s1'
-991866206: 1940: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252d60|s1'
-991866206: 1941: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252d80|s1'
-991866206: 1942: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8252da0|s1'
-991866206: 1943: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8252dc0|s1'
-991866206: 1944: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8252de0|s1'
-991866206: 1945: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8252e00|s1'
-991866206: 1946: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252e20|s1'
-991866206: 1947: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245f80|s1'
-991866206: 1948: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ef00|s1'
-991866206: 1949: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252e40|s1'
-991866206: 1950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252e60|s1'
-991866206: 1951: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252e80|s1'
-991866206: 1952: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252ea0|s1'
-991866206: 1953: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252ec0|s1'
-991866206: 1954: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252ee0|s1'
-991866206: 1955: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252f00|s1'
-991866206: 1956: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8245fc0|s1'
-991866206: 1957: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x824ef80|s1'
-991866206: 1958: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252f20|s1'
-991866206: 1959: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252f40|s1'
-991866206: 1960: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8252f60|s1'
-991866206: 1961: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8252f80|s1'
-991866206: 1962: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8252fa0|s1'
-991866206: 1963: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8252fc0|s1'
-991866206: 1964: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8252fe0|s1'
-991866206: 1965: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254000|s1'
-991866206: 1966: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254020|s1'
-991866206: 1967: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254040|s1'
-991866206: 1968: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254060|s1'
-991866206: 1969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254080|s1'
-991866206: 1970: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256000|s1'
-991866206: 1971: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257000|s1'
-991866206: 1972: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82540a0|s1'
-991866206: 1973: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82540c0|s1'
-991866206: 1974: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82540e0|s1'
-991866206: 1975: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254100|s1'
-991866206: 1976: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254120|s1'
-991866206: 1977: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254140|s1'
-991866206: 1978: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254160|s1'
-991866206: 1979: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256040|s1'
-991866206: 1980: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257080|s1'
-991866206: 1981: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254180|s1'
-991866206: 1982: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82541a0|s1'
-991866206: 1983: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82541c0|s1'
-991866206: 1984: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82541e0|s1'
-991866206: 1985: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254200|s1'
-991866206: 1986: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254220|s1'
-991866206: 1987: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254240|s1'
-991866206: 1988: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254260|s1'
-991866206: 1989: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254280|s1'
-991866206: 1990: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82542a0|s1'
-991866206: 1991: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82542c0|s1'
-991866206: 1992: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82542e0|s1'
-991866206: 1993: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254300|s1'
-991866206: 1994: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254320|s1'
-991866206: 1995: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254340|s1'
-991866206: 1996: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256080|s1'
-991866206: 1997: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257100|s1'
-991866206: 1998: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254360|s1'
-991866206: 1999: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254380|s1'
-991866206: 2000: checking heap
-991866206: 2000: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82543a0|s1'
-991866206: 2001: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82543c0|s1'
-991866206: 2002: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82543e0|s1'
-991866206: 2003: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254400|s1'
-991866206: 2004: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254420|s1'
-991866206: 2005: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254440|s1'
-991866206: 2006: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254460|s1'
-991866206: 2007: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254480|s1'
-991866206: 2008: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82544a0|s1'
-991866206: 2009: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82544c0|s1'
-991866206: 2010: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82560c0|s1'
-991866206: 2011: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257180|s1'
-991866206: 2012: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82544e0|s1'
-991866206: 2013: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254500|s1'
-991866206: 2014: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254520|s1'
-991866206: 2015: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254540|s1'
-991866206: 2016: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254560|s1'
-991866206: 2017: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254580|s1'
-991866206: 2018: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82545a0|s1'
-991866206: 2019: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82545c0|s1'
-991866206: 2020: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82545e0|s1'
-991866206: 2021: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254600|s1'
-991866206: 2022: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254620|s1'
-991866206: 2023: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254640|s1'
-991866206: 2024: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254660|s1'
-991866206: 2025: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254680|s1'
-991866206: 2026: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82546a0|s1'
-991866206: 2027: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256100|s1'
-991866206: 2028: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257200|s1'
-991866206: 2029: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82546c0|s1'
-991866206: 2030: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82546e0|s1'
-991866206: 2031: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254700|s1'
-991866206: 2032: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254720|s1'
-991866206: 2033: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254740|s1'
-991866206: 2034: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254760|s1'
-991866206: 2035: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254780|s1'
-991866206: 2036: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82547a0|s1'
-991866206: 2037: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82547c0|s1'
-991866206: 2038: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82547e0|s1'
-991866206: 2039: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254800|s1'
-991866206: 2040: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254820|s1'
-991866206: 2041: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256140|s1'
-991866206: 2042: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257280|s1'
-991866206: 2043: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254840|s1'
-991866206: 2044: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254860|s1'
-991866206: 2045: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254880|s1'
-991866206: 2046: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82548a0|s1'
-991866206: 2047: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82548c0|s1'
-991866206: 2048: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82548e0|s1'
-991866206: 2049: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254900|s1'
-991866206: 2050: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254920|s1'
-991866206: 2051: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254940|s1'
-991866206: 2052: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254960|s1'
-991866206: 2053: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254980|s1'
-991866206: 2054: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82549a0|s1'
-991866206: 2055: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82549c0|s1'
-991866206: 2056: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82549e0|s1'
-991866206: 2057: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254a00|s1'
-991866206: 2058: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256180|s1'
-991866206: 2059: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257300|s1'
-991866206: 2060: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254a20|s1'
-991866206: 2061: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254a40|s1'
-991866206: 2062: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254a60|s1'
-991866206: 2063: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254a80|s1'
-991866206: 2064: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254aa0|s1'
-991866206: 2065: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254ac0|s1'
-991866206: 2066: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254ae0|s1'
-991866206: 2067: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254b00|s1'
-991866206: 2068: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254b20|s1'
-991866206: 2069: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254b40|s1'
-991866206: 2070: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254b60|s1'
-991866206: 2071: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254b80|s1'
-991866206: 2072: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82561c0|s1'
-991866206: 2073: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257380|s1'
-991866206: 2074: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254ba0|s1'
-991866206: 2075: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254bc0|s1'
-991866206: 2076: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254be0|s1'
-991866206: 2077: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254c00|s1'
-991866206: 2078: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254c20|s1'
-991866206: 2079: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254c40|s1'
-991866206: 2080: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254c60|s1'
-991866206: 2081: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254c80|s1'
-991866206: 2082: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254ca0|s1'
-991866206: 2083: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254cc0|s1'
-991866206: 2084: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254ce0|s1'
-991866206: 2085: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254d00|s1'
-991866206: 2086: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254d20|s1'
-991866206: 2087: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254d40|s1'
-991866206: 2088: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254d60|s1'
-991866206: 2089: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256200|s1'
-991866206: 2090: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257400|s1'
-991866206: 2091: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254d80|s1'
-991866206: 2092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254da0|s1'
-991866206: 2093: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254dc0|s1'
-991866206: 2094: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254de0|s1'
-991866206: 2095: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254e00|s1'
-991866206: 2096: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254e20|s1'
-991866206: 2097: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254e40|s1'
-991866206: 2098: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254e60|s1'
-991866206: 2099: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8254e80|s1'
-991866206: 2100: checking heap
-991866206: 2100: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8254ea0|s1'
-991866206: 2101: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8254ec0|s1'
-991866206: 2102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254ee0|s1'
-991866206: 2103: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256240|s1'
-991866206: 2104: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257480|s1'
-991866206: 2105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254f00|s1'
-991866206: 2106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254f20|s1'
-991866206: 2107: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8254f40|s1'
-991866206: 2108: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8254f60|s1'
-991866206: 2109: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8254f80|s1'
-991866206: 2110: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8254fa0|s1'
-991866206: 2111: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8254fc0|s1'
-991866206: 2112: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8254fe0|s1'
-991866206: 2113: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259000|s1'
-991866206: 2114: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259020|s1'
-991866206: 2115: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259040|s1'
-991866206: 2116: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259060|s1'
-991866206: 2117: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8259080|s1'
-991866206: 2118: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82590a0|s1'
-991866206: 2119: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256280|s1'
-991866206: 2120: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257500|s1'
-991866206: 2121: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82590c0|s1'
-991866206: 2122: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82590e0|s1'
-991866206: 2123: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259100|s1'
-991866206: 2124: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259120|s1'
-991866206: 2125: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259140|s1'
-991866206: 2126: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259160|s1'
-991866206: 2127: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259180|s1'
-991866206: 2128: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82562c0|s1'
-991866206: 2129: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257580|s1'
-991866206: 2130: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82591a0|s1'
-991866206: 2131: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82591c0|s1'
-991866206: 2132: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82591e0|s1'
-991866206: 2133: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259200|s1'
-991866206: 2134: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259220|s1'
-991866206: 2135: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259240|s1'
-991866206: 2136: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259260|s1'
-991866206: 2137: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8259280|s1'
-991866206: 2138: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82592a0|s1'
-991866206: 2139: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82592c0|s1'
-991866206: 2140: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82592e0|s1'
-991866206: 2141: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259300|s1'
-991866206: 2142: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256300|s1'
-991866206: 2143: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257600|s1'
-991866206: 2144: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259320|s1'
-991866206: 2145: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259340|s1'
-991866206: 2146: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259360|s1'
-991866206: 2147: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259380|s1'
-991866206: 2148: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82593a0|s1'
-991866206: 2149: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82593c0|s1'
-991866206: 2150: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82593e0|s1'
-991866206: 2151: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256340|s1'
-991866206: 2152: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257680|s1'
-991866206: 2153: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259400|s1'
-991866206: 2154: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259420|s1'
-991866206: 2155: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259440|s1'
-991866206: 2156: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259460|s1'
-991866206: 2157: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259480|s1'
-991866206: 2158: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82594a0|s1'
-991866206: 2159: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82594c0|s1'
-991866206: 2160: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82594e0|s1'
-991866206: 2161: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259500|s1'
-991866206: 2162: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259520|s1'
-991866206: 2163: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259540|s1'
-991866206: 2164: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259560|s1'
-991866206: 2165: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259580|s1'
-991866206: 2166: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82595a0|s1'
-991866206: 2167: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82595c0|s1'
-991866206: 2168: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256380|s1'
-991866206: 2169: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257700|s1'
-991866206: 2170: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82595e0|s1'
-991866206: 2171: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259600|s1'
-991866206: 2172: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259620|s1'
-991866206: 2173: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259640|s1'
-991866206: 2174: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259660|s1'
-991866206: 2175: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259680|s1'
-991866206: 2176: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82596a0|s1'
-991866206: 2177: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82596c0|s1'
-991866206: 2178: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82596e0|s1'
-991866206: 2179: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259700|s1'
-991866206: 2180: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8259720|s1'
-991866206: 2181: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259740|s1'
-991866206: 2182: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82563c0|s1'
-991866206: 2183: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257780|s1'
-991866206: 2184: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259760|s1'
-991866206: 2185: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259780|s1'
-991866206: 2186: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82597a0|s1'
-991866206: 2187: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82597c0|s1'
-991866206: 2188: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82597e0|s1'
-991866206: 2189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259800|s1'
-991866206: 2190: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259820|s1'
-991866206: 2191: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8259840|s1'
-991866206: 2192: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259860|s1'
-991866206: 2193: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259880|s1'
-991866206: 2194: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82598a0|s1'
-991866206: 2195: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82598c0|s1'
-991866206: 2196: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256400|s1'
-991866206: 2197: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257800|s1'
-991866206: 2198: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82598e0|s1'
-991866206: 2199: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259900|s1'
-991866206: 2200: checking heap
-991866206: 2200: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259920|s1'
-991866206: 2201: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259940|s1'
-991866206: 2202: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259960|s1'
-991866206: 2203: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259980|s1'
-991866206: 2204: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82599a0|s1'
-991866206: 2205: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256440|s1'
-991866206: 2206: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257880|s1'
-991866206: 2207: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82599c0|s1'
-991866206: 2208: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82599e0|s1'
-991866206: 2209: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259a00|s1'
-991866206: 2210: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259a20|s1'
-991866206: 2211: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259a40|s1'
-991866206: 2212: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259a60|s1'
-991866206: 2213: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259a80|s1'
-991866206: 2214: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8259aa0|s1'
-991866206: 2215: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259ac0|s1'
-991866206: 2216: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259ae0|s1'
-991866206: 2217: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8259b00|s1'
-991866206: 2218: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259b20|s1'
-991866206: 2219: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256480|s1'
-991866206: 2220: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257900|s1'
-991866206: 2221: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259b40|s1'
-991866206: 2222: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259b60|s1'
-991866206: 2223: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259b80|s1'
-991866206: 2224: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259ba0|s1'
-991866206: 2225: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259bc0|s1'
-991866206: 2226: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259be0|s1'
-991866206: 2227: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259c00|s1'
-991866206: 2228: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8259c20|s1'
-991866206: 2229: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259c40|s1'
-991866206: 2230: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259c60|s1'
-991866206: 2231: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8259c80|s1'
-991866206: 2232: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259ca0|s1'
-991866206: 2233: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82564c0|s1'
-991866206: 2234: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257980|s1'
-991866206: 2235: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259cc0|s1'
-991866206: 2236: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259ce0|s1'
-991866206: 2237: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259d00|s1'
-991866206: 2238: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259d20|s1'
-991866206: 2239: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259d40|s1'
-991866206: 2240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259d60|s1'
-991866206: 2241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259d80|s1'
-991866206: 2242: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256500|s1'
-991866206: 2243: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257a00|s1'
-991866206: 2244: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259da0|s1'
-991866206: 2245: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259dc0|s1'
-991866206: 2246: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259de0|s1'
-991866206: 2247: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259e00|s1'
-991866206: 2248: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259e20|s1'
-991866206: 2249: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259e40|s1'
-991866206: 2250: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259e60|s1'
-991866206: 2251: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8259e80|s1'
-991866206: 2252: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8259ea0|s1'
-991866206: 2253: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8259ec0|s1'
-991866206: 2254: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8259ee0|s1'
-991866206: 2255: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259f00|s1'
-991866206: 2256: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256540|s1'
-991866206: 2257: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257a80|s1'
-991866206: 2258: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259f20|s1'
-991866206: 2259: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259f40|s1'
-991866206: 2260: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8259f60|s1'
-991866206: 2261: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8259f80|s1'
-991866206: 2262: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8259fa0|s1'
-991866206: 2263: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8259fc0|s1'
-991866206: 2264: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8259fe0|s1'
-991866206: 2265: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825b000|s1'
-991866206: 2266: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b020|s1'
-991866206: 2267: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825b040|s1'
-991866206: 2268: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825b060|s1'
-991866206: 2269: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b080|s1'
-991866206: 2270: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256580|s1'
-991866206: 2271: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257b00|s1'
-991866206: 2272: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b0a0|s1'
-991866206: 2273: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b0c0|s1'
-991866206: 2274: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825b0e0|s1'
-991866206: 2275: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825b100|s1'
-991866206: 2276: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b120|s1'
-991866206: 2277: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b140|s1'
-991866206: 2278: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b160|s1'
-991866206: 2279: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825b180|s1'
-991866206: 2280: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b1a0|s1'
-991866206: 2281: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b1c0|s1'
-991866206: 2282: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b1e0|s1'
-991866206: 2283: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825b200|s1'
-991866206: 2284: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825b220|s1'
-991866206: 2285: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b240|s1'
-991866206: 2286: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82565c0|s1'
-991866206: 2287: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257b80|s1'
-991866206: 2288: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b260|s1'
-991866206: 2289: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b280|s1'
-991866206: 2290: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825b2a0|s1'
-991866206: 2291: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825b2c0|s1'
-991866206: 2292: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b2e0|s1'
-991866206: 2293: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b300|s1'
-991866206: 2294: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b320|s1'
-991866206: 2295: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b340|s1'
-991866206: 2296: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256600|s1'
-991866206: 2297: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x825b360|s1'
-991866206: 2298: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b380|s1'
-991866206: 2299: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825b3a0|s1'
-991866206: 2300: checking heap
-991866206: 2300: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b3c0|s1'
-991866206: 2301: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825b3e0|s1'
-991866206: 2302: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825b400|s1'
-991866206: 2303: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b420|s1'
-991866206: 2304: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256640|s1'
-991866206: 2305: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257c00|s1'
-991866206: 2306: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b440|s1'
-991866206: 2307: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b460|s1'
-991866206: 2308: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825b480|s1'
-991866206: 2309: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825b4a0|s1'
-991866206: 2310: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b4c0|s1'
-991866206: 2311: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b4e0|s1'
-991866206: 2312: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b500|s1'
-991866206: 2313: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b520|s1'
-991866206: 2314: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b540|s1'
-991866206: 2315: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825b560|s1'
-991866206: 2316: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b580|s1'
-991866206: 2317: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825b5a0|s1'
-991866206: 2318: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825b5c0|s1'
-991866206: 2319: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b5e0|s1'
-991866206: 2320: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256680|s1'
-991866206: 2321: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257c80|s1'
-991866206: 2322: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b600|s1'
-991866206: 2323: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b620|s1'
-991866206: 2324: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825b640|s1'
-991866206: 2325: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825b660|s1'
-991866206: 2326: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b680|s1'
-991866206: 2327: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b6a0|s1'
-991866206: 2328: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b6c0|s1'
-991866206: 2329: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825b6e0|s1'
-991866206: 2330: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b700|s1'
-991866206: 2331: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825b720|s1'
-991866206: 2332: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825b740|s1'
-991866206: 2333: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b760|s1'
-991866206: 2334: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82566c0|s1'
-991866206: 2335: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257d00|s1'
-991866206: 2336: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b780|s1'
-991866206: 2337: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b7a0|s1'
-991866206: 2338: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825b7c0|s1'
-991866206: 2339: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825b7e0|s1'
-991866206: 2340: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b800|s1'
-991866206: 2341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b820|s1'
-991866206: 2342: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b840|s1'
-991866206: 2343: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825b860|s1'
-991866206: 2344: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b880|s1'
-991866206: 2345: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b8a0|s1'
-991866206: 2346: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b8c0|s1'
-991866206: 2347: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b8e0|s1'
-991866206: 2348: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b900|s1'
-991866206: 2349: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825b920|s1'
-991866206: 2350: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825b940|s1'
-991866206: 2351: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825b960|s1'
-991866206: 2352: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825b980|s1'
-991866206: 2353: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b9a0|s1'
-991866206: 2354: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256700|s1'
-991866206: 2355: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257d80|s1'
-991866206: 2356: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825b9c0|s1'
-991866206: 2357: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825b9e0|s1'
-991866206: 2358: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825ba00|s1'
-991866206: 2359: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825ba20|s1'
-991866206: 2360: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825ba40|s1'
-991866206: 2361: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825ba60|s1'
-991866206: 2362: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825ba80|s1'
-991866206: 2363: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825baa0|s1'
-991866206: 2364: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825bac0|s1'
-991866206: 2365: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825bae0|s1'
-991866206: 2366: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825bb00|s1'
-991866206: 2367: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bb20|s1'
-991866206: 2368: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256740|s1'
-991866206: 2369: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257e00|s1'
-991866206: 2370: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bb40|s1'
-991866206: 2371: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bb60|s1'
-991866206: 2372: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825bb80|s1'
-991866206: 2373: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825bba0|s1'
-991866206: 2374: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bbc0|s1'
-991866206: 2375: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bbe0|s1'
-991866206: 2376: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825bc00|s1'
-991866206: 2377: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825bc20|s1'
-991866206: 2378: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825bc40|s1'
-991866206: 2379: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825bc60|s1'
-991866206: 2380: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825bc80|s1'
-991866206: 2381: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bca0|s1'
-991866206: 2382: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256780|s1'
-991866206: 2383: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257e80|s1'
-991866206: 2384: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bcc0|s1'
-991866206: 2385: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bce0|s1'
-991866206: 2386: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825bd00|s1'
-991866206: 2387: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825bd20|s1'
-991866206: 2388: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bd40|s1'
-991866206: 2389: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bd60|s1'
-991866206: 2390: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bd80|s1'
-991866206: 2391: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82567c0|s1'
-991866206: 2392: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257f00|s1'
-991866206: 2393: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bda0|s1'
-991866206: 2394: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bdc0|s1'
-991866206: 2395: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825bde0|s1'
-991866206: 2396: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825be00|s1'
-991866206: 2397: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825be20|s1'
-991866206: 2398: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825be40|s1'
-991866206: 2399: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825be60|s1'
-991866206: 2400: checking heap
-991866206: 2400: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825be80|s1'
-991866206: 2401: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825bea0|s1'
-991866206: 2402: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825bec0|s1'
-991866206: 2403: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825bee0|s1'
-991866206: 2404: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bf00|s1'
-991866206: 2405: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256800|s1'
-991866206: 2406: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8257f80|s1'
-991866206: 2407: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bf20|s1'
-991866206: 2408: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bf40|s1'
-991866206: 2409: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825bf60|s1'
-991866206: 2410: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825bf80|s1'
-991866206: 2411: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825bfa0|s1'
-991866206: 2412: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bfc0|s1'
-991866206: 2413: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825bfe0|s1'
-991866206: 2414: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256840|s1'
-991866206: 2415: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d000|s1'
-991866206: 2416: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f000|s1'
-991866206: 2417: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f020|s1'
-991866206: 2418: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825f040|s1'
-991866206: 2419: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825f060|s1'
-991866206: 2420: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f080|s1'
-991866206: 2421: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f0a0|s1'
-991866206: 2422: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f0c0|s1'
-991866206: 2423: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f0e0|s1'
-991866206: 2424: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f100|s1'
-991866206: 2425: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f120|s1'
-991866206: 2426: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f140|s1'
-991866206: 2427: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f160|s1'
-991866206: 2428: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f180|s1'
-991866206: 2429: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f1a0|s1'
-991866206: 2430: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f1c0|s1'
-991866206: 2431: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f1e0|s1'
-991866206: 2432: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f200|s1'
-991866206: 2433: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f220|s1'
-991866206: 2434: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f240|s1'
-991866206: 2435: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f260|s1'
-991866206: 2436: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f280|s1'
-991866206: 2437: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f2a0|s1'
-991866206: 2438: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f2c0|s1'
-991866206: 2439: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f2e0|s1'
-991866206: 2440: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f300|s1'
-991866206: 2441: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f320|s1'
-991866206: 2442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f340|s1'
-991866206: 2443: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256880|s1'
-991866206: 2444: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d080|s1'
-991866206: 2445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f360|s1'
-991866206: 2446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f380|s1'
-991866206: 2447: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825f3a0|s1'
-991866206: 2448: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825f3c0|s1'
-991866206: 2449: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f3e0|s1'
-991866206: 2450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f400|s1'
-991866206: 2451: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f420|s1'
-991866206: 2452: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f440|s1'
-991866206: 2453: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f460|s1'
-991866206: 2454: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f480|s1'
-991866206: 2455: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f4a0|s1'
-991866206: 2456: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f4c0|s1'
-991866206: 2457: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f4e0|s1'
-991866206: 2458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f500|s1'
-991866206: 2459: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82568c0|s1'
-991866206: 2460: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d100|s1'
-991866206: 2461: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f520|s1'
-991866206: 2462: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f540|s1'
-991866206: 2463: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825f560|s1'
-991866206: 2464: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825f580|s1'
-991866206: 2465: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f5a0|s1'
-991866206: 2466: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f5c0|s1'
-991866206: 2467: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f5e0|s1'
-991866206: 2468: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f600|s1'
-991866206: 2469: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f620|s1'
-991866206: 2470: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f640|s1'
-991866206: 2471: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f660|s1'
-991866206: 2472: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f680|s1'
-991866206: 2473: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f6a0|s1'
-991866206: 2474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f6c0|s1'
-991866206: 2475: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256900|s1'
-991866206: 2476: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d180|s1'
-991866206: 2477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f6e0|s1'
-991866206: 2478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f700|s1'
-991866206: 2479: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825f720|s1'
-991866206: 2480: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825f740|s1'
-991866206: 2481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f760|s1'
-991866206: 2482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f780|s1'
-991866206: 2483: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f7a0|s1'
-991866206: 2484: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f7c0|s1'
-991866206: 2485: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f7e0|s1'
-991866206: 2486: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f800|s1'
-991866206: 2487: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f820|s1'
-991866206: 2488: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f840|s1'
-991866206: 2489: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f860|s1'
-991866206: 2490: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f880|s1'
-991866206: 2491: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256940|s1'
-991866206: 2492: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d200|s1'
-991866206: 2493: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f8a0|s1'
-991866206: 2494: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f8c0|s1'
-991866206: 2495: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825f8e0|s1'
-991866206: 2496: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825f900|s1'
-991866206: 2497: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825f920|s1'
-991866206: 2498: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825f940|s1'
-991866206: 2499: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825f960|s1'
-991866206: 2500: checking heap
-991866206: 2500: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825f980|s1'
-991866206: 2501: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825f9a0|s1'
-991866206: 2502: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825f9c0|s1'
-991866206: 2503: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825f9e0|s1'
-991866206: 2504: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fa00|s1'
-991866206: 2505: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256980|s1'
-991866206: 2506: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d280|s1'
-991866206: 2507: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825fa20|s1'
-991866206: 2508: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fa40|s1'
-991866206: 2509: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825fa60|s1'
-991866206: 2510: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825fa80|s1'
-991866206: 2511: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825faa0|s1'
-991866206: 2512: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fac0|s1'
-991866206: 2513: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825fae0|s1'
-991866206: 2514: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825fb00|s1'
-991866206: 2515: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825fb20|s1'
-991866206: 2516: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825fb40|s1'
-991866206: 2517: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825fb60|s1'
-991866206: 2518: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fb80|s1'
-991866206: 2519: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82569c0|s1'
-991866206: 2520: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d300|s1'
-991866206: 2521: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825fba0|s1'
-991866206: 2522: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fbc0|s1'
-991866206: 2523: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825fbe0|s1'
-991866206: 2524: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825fc00|s1'
-991866206: 2525: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825fc20|s1'
-991866206: 2526: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fc40|s1'
-991866206: 2527: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825fc60|s1'
-991866206: 2528: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825fc80|s1'
-991866206: 2529: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825fca0|s1'
-991866206: 2530: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825fcc0|s1'
-991866206: 2531: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825fce0|s1'
-991866206: 2532: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fd00|s1'
-991866206: 2533: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256a00|s1'
-991866206: 2534: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d380|s1'
-991866206: 2535: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825fd20|s1'
-991866206: 2536: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fd40|s1'
-991866206: 2537: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825fd60|s1'
-991866206: 2538: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825fd80|s1'
-991866206: 2539: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825fda0|s1'
-991866206: 2540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fdc0|s1'
-991866206: 2541: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x825fde0|s1'
-991866206: 2542: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x825fe00|s1'
-991866206: 2543: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x825fe20|s1'
-991866206: 2544: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x825fe40|s1'
-991866206: 2545: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x825fe60|s1'
-991866206: 2546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fe80|s1'
-991866206: 2547: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256a40|s1'
-991866206: 2548: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d400|s1'
-991866206: 2549: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825fea0|s1'
-991866206: 2550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825fec0|s1'
-991866206: 2551: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825fee0|s1'
-991866206: 2552: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825ff00|s1'
-991866206: 2553: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825ff20|s1'
-991866206: 2554: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825ff40|s1'
-991866206: 2555: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825ff60|s1'
-991866206: 2556: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256a80|s1'
-991866206: 2557: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d480|s1'
-991866206: 2558: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x825ff80|s1'
-991866206: 2559: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x825ffa0|s1'
-991866206: 2560: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x825ffc0|s1'
-991866206: 2561: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x825ffe0|s1'
-991866206: 2562: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261000|s1'
-991866206: 2563: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261020|s1'
-991866206: 2564: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8261040|s1'
-991866206: 2565: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8261060|s1'
-991866206: 2566: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8261080|s1'
-991866206: 2567: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82610a0|s1'
-991866206: 2568: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82610c0|s1'
-991866206: 2569: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82610e0|s1'
-991866206: 2570: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256ac0|s1'
-991866206: 2571: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d500|s1'
-991866206: 2572: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261100|s1'
-991866206: 2573: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261120|s1'
-991866206: 2574: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261140|s1'
-991866206: 2575: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261160|s1'
-991866206: 2576: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261180|s1'
-991866206: 2577: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82611a0|s1'
-991866206: 2578: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82611c0|s1'
-991866206: 2579: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256b00|s1'
-991866206: 2580: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d580|s1'
-991866206: 2581: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82611e0|s1'
-991866206: 2582: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261200|s1'
-991866206: 2583: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261220|s1'
-991866206: 2584: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261240|s1'
-991866206: 2585: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261260|s1'
-991866206: 2586: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261280|s1'
-991866206: 2587: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82612a0|s1'
-991866206: 2588: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82612c0|s1'
-991866206: 2589: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82612e0|s1'
-991866206: 2590: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8261300|s1'
-991866206: 2591: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8261320|s1'
-991866206: 2592: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261340|s1'
-991866206: 2593: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256b40|s1'
-991866206: 2594: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d600|s1'
-991866206: 2595: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261360|s1'
-991866206: 2596: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261380|s1'
-991866206: 2597: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82613a0|s1'
-991866206: 2598: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82613c0|s1'
-991866206: 2599: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82613e0|s1'
-991866206: 2600: checking heap
-991866206: 2600: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261400|s1'
-991866206: 2601: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261420|s1'
-991866206: 2602: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256b80|s1'
-991866206: 2603: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d680|s1'
-991866206: 2604: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261440|s1'
-991866206: 2605: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261460|s1'
-991866206: 2606: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261480|s1'
-991866206: 2607: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82614a0|s1'
-991866206: 2608: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82614c0|s1'
-991866206: 2609: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82614e0|s1'
-991866206: 2610: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8261500|s1'
-991866206: 2611: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8261520|s1'
-991866206: 2612: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8261540|s1'
-991866206: 2613: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8261560|s1'
-991866206: 2614: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8261580|s1'
-991866206: 2615: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82615a0|s1'
-991866206: 2616: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256bc0|s1'
-991866206: 2617: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d700|s1'
-991866206: 2618: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82615c0|s1'
-991866206: 2619: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82615e0|s1'
-991866206: 2620: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261600|s1'
-991866206: 2621: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261620|s1'
-991866206: 2622: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261640|s1'
-991866206: 2623: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261660|s1'
-991866206: 2624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261680|s1'
-991866206: 2625: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256c00|s1'
-991866206: 2626: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d780|s1'
-991866206: 2627: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82616a0|s1'
-991866206: 2628: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82616c0|s1'
-991866206: 2629: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82616e0|s1'
-991866206: 2630: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261700|s1'
-991866206: 2631: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261720|s1'
-991866206: 2632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261740|s1'
-991866206: 2633: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261760|s1'
-991866206: 2634: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256c40|s1'
-991866206: 2635: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d800|s1'
-991866206: 2636: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261780|s1'
-991866206: 2637: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82617a0|s1'
-991866206: 2638: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82617c0|s1'
-991866206: 2639: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82617e0|s1'
-991866206: 2640: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261800|s1'
-991866206: 2641: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261820|s1'
-991866206: 2642: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8261840|s1'
-991866206: 2643: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8261860|s1'
-991866206: 2644: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8261880|s1'
-991866206: 2645: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82618a0|s1'
-991866206: 2646: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82618c0|s1'
-991866206: 2647: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82618e0|s1'
-991866206: 2648: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256c80|s1'
-991866206: 2649: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d880|s1'
-991866206: 2650: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261900|s1'
-991866206: 2651: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261920|s1'
-991866206: 2652: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261940|s1'
-991866206: 2653: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261960|s1'
-991866206: 2654: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261980|s1'
-991866206: 2655: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82619a0|s1'
-991866206: 2656: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82619c0|s1'
-991866206: 2657: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256cc0|s1'
-991866206: 2658: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d900|s1'
-991866206: 2659: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82619e0|s1'
-991866206: 2660: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261a00|s1'
-991866206: 2661: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261a20|s1'
-991866206: 2662: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261a40|s1'
-991866206: 2663: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261a60|s1'
-991866206: 2664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261a80|s1'
-991866206: 2665: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261aa0|s1'
-991866206: 2666: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256d00|s1'
-991866206: 2667: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825d980|s1'
-991866206: 2668: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261ac0|s1'
-991866206: 2669: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261ae0|s1'
-991866206: 2670: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261b00|s1'
-991866206: 2671: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261b20|s1'
-991866206: 2672: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261b40|s1'
-991866206: 2673: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261b60|s1'
-991866206: 2674: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8261b80|s1'
-991866206: 2675: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8261ba0|s1'
-991866206: 2676: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8261bc0|s1'
-991866206: 2677: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8261be0|s1'
-991866206: 2678: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8261c00|s1'
-991866206: 2679: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261c20|s1'
-991866206: 2680: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256d40|s1'
-991866206: 2681: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825da00|s1'
-991866206: 2682: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261c40|s1'
-991866206: 2683: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261c60|s1'
-991866206: 2684: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261c80|s1'
-991866206: 2685: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261ca0|s1'
-991866206: 2686: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261cc0|s1'
-991866206: 2687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261ce0|s1'
-991866206: 2688: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261d00|s1'
-991866206: 2689: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256d80|s1'
-991866206: 2690: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825da80|s1'
-991866206: 2691: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261d20|s1'
-991866206: 2692: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261d40|s1'
-991866206: 2693: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261d60|s1'
-991866206: 2694: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261d80|s1'
-991866206: 2695: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261da0|s1'
-991866206: 2696: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261dc0|s1'
-991866206: 2697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261de0|s1'
-991866206: 2698: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256dc0|s1'
-991866206: 2699: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825db00|s1'
-991866206: 2700: checking heap
-991866206: 2700: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261e00|s1'
-991866206: 2701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261e20|s1'
-991866206: 2702: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261e40|s1'
-991866206: 2703: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261e60|s1'
-991866206: 2704: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261e80|s1'
-991866206: 2705: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261ea0|s1'
-991866206: 2706: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8261ec0|s1'
-991866206: 2707: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8261ee0|s1'
-991866206: 2708: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8261f00|s1'
-991866206: 2709: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8261f20|s1'
-991866206: 2710: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8261f40|s1'
-991866206: 2711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261f60|s1'
-991866206: 2712: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256e00|s1'
-991866206: 2713: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825db80|s1'
-991866206: 2714: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8261f80|s1'
-991866206: 2715: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8261fa0|s1'
-991866206: 2716: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8261fc0|s1'
-991866206: 2717: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8261fe0|s1'
-991866206: 2718: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263000|s1'
-991866206: 2719: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263020|s1'
-991866206: 2720: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263040|s1'
-991866206: 2721: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256e40|s1'
-991866206: 2722: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825dc00|s1'
-991866206: 2723: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263060|s1'
-991866206: 2724: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263080|s1'
-991866206: 2725: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82630a0|s1'
-991866206: 2726: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82630c0|s1'
-991866206: 2727: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82630e0|s1'
-991866206: 2728: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263100|s1'
-991866206: 2729: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263120|s1'
-991866206: 2730: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263140|s1'
-991866206: 2731: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8263160|s1'
-991866206: 2732: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8263180|s1'
-991866206: 2733: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82631a0|s1'
-991866206: 2734: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82631c0|s1'
-991866206: 2735: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82631e0|s1'
-991866206: 2736: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263200|s1'
-991866206: 2737: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256e80|s1'
-991866206: 2738: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825dc80|s1'
-991866206: 2739: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263220|s1'
-991866206: 2740: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263240|s1'
-991866206: 2741: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263260|s1'
-991866206: 2742: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263280|s1'
-991866206: 2743: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82632a0|s1'
-991866206: 2744: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82632c0|s1'
-991866206: 2745: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82632e0|s1'
-991866206: 2746: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256ec0|s1'
-991866206: 2747: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825dd00|s1'
-991866206: 2748: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263300|s1'
-991866206: 2749: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263320|s1'
-991866206: 2750: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263340|s1'
-991866206: 2751: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263360|s1'
-991866206: 2752: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263380|s1'
-991866206: 2753: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82633a0|s1'
-991866206: 2754: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82633c0|s1'
-991866206: 2755: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82633e0|s1'
-991866206: 2756: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8263400|s1'
-991866206: 2757: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8263420|s1'
-991866206: 2758: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8263440|s1'
-991866206: 2759: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8263460|s1'
-991866206: 2760: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8263480|s1'
-991866206: 2761: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82634a0|s1'
-991866206: 2762: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256f00|s1'
-991866206: 2763: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825dd80|s1'
-991866206: 2764: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82634c0|s1'
-991866206: 2765: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82634e0|s1'
-991866206: 2766: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263500|s1'
-991866206: 2767: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263520|s1'
-991866206: 2768: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263540|s1'
-991866206: 2769: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263560|s1'
-991866206: 2770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263580|s1'
-991866206: 2771: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256f40|s1'
-991866206: 2772: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825de00|s1'
-991866206: 2773: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82635a0|s1'
-991866206: 2774: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82635c0|s1'
-991866206: 2775: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82635e0|s1'
-991866206: 2776: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263600|s1'
-991866206: 2777: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263620|s1'
-991866206: 2778: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263640|s1'
-991866206: 2779: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263660|s1'
-991866206: 2780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263680|s1'
-991866206: 2781: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82636a0|s1'
-991866206: 2782: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256f80|s1'
-991866206: 2783: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825de80|s1'
-991866206: 2784: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82636c0|s1'
-991866206: 2785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82636e0|s1'
-991866206: 2786: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263700|s1'
-991866206: 2787: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263720|s1'
-991866206: 2788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263740|s1'
-991866206: 2789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263760|s1'
-991866206: 2790: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263780|s1'
-991866206: 2791: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8256fc0|s1'
-991866206: 2792: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825df00|s1'
-991866206: 2793: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82637a0|s1'
-991866206: 2794: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82637c0|s1'
-991866206: 2795: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82637e0|s1'
-991866206: 2796: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263800|s1'
-991866206: 2797: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263820|s1'
-991866206: 2798: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263840|s1'
-991866206: 2799: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8263860|s1'
-991866206: 2800: checking heap
-991866206: 2800: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8263880|s1'
-991866206: 2801: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82638a0|s1'
-991866206: 2802: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82638c0|s1'
-991866206: 2803: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82638e0|s1'
-991866206: 2804: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263900|s1'
-991866206: 2805: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265000|s1'
-991866206: 2806: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x825df80|s1'
-991866206: 2807: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263920|s1'
-991866206: 2808: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263940|s1'
-991866206: 2809: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263960|s1'
-991866206: 2810: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263980|s1'
-991866206: 2811: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82639a0|s1'
-991866206: 2812: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82639c0|s1'
-991866206: 2813: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82639e0|s1'
-991866206: 2814: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265040|s1'
-991866206: 2815: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266000|s1'
-991866206: 2816: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263a00|s1'
-991866206: 2817: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263a20|s1'
-991866206: 2818: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263a40|s1'
-991866206: 2819: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263a60|s1'
-991866206: 2820: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263a80|s1'
-991866206: 2821: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263aa0|s1'
-991866206: 2822: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263ac0|s1'
-991866206: 2823: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263ae0|s1'
-991866206: 2824: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263b00|s1'
-991866206: 2825: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265080|s1'
-991866206: 2826: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266080|s1'
-991866206: 2827: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263b20|s1'
-991866206: 2828: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263b40|s1'
-991866206: 2829: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263b60|s1'
-991866206: 2830: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263b80|s1'
-991866206: 2831: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263ba0|s1'
-991866206: 2832: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263bc0|s1'
-991866206: 2833: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263be0|s1'
-991866206: 2834: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82650c0|s1'
-991866206: 2835: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266100|s1'
-991866206: 2836: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263c00|s1'
-991866206: 2837: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263c20|s1'
-991866206: 2838: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263c40|s1'
-991866206: 2839: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263c60|s1'
-991866206: 2840: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263c80|s1'
-991866206: 2841: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263ca0|s1'
-991866206: 2842: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8263cc0|s1'
-991866206: 2843: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8263ce0|s1'
-991866206: 2844: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8263d00|s1'
-991866206: 2845: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8263d20|s1'
-991866206: 2846: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8263d40|s1'
-991866206: 2847: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8263d60|s1'
-991866206: 2848: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8263d80|s1'
-991866206: 2849: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8263da0|s1'
-991866206: 2850: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263dc0|s1'
-991866206: 2851: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265100|s1'
-991866206: 2852: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266180|s1'
-991866206: 2853: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263de0|s1'
-991866206: 2854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263e00|s1'
-991866206: 2855: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263e20|s1'
-991866206: 2856: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263e40|s1'
-991866206: 2857: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263e60|s1'
-991866206: 2858: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263e80|s1'
-991866206: 2859: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263ea0|s1'
-991866206: 2860: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265140|s1'
-991866206: 2861: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266200|s1'
-991866206: 2862: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263ec0|s1'
-991866206: 2863: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263ee0|s1'
-991866206: 2864: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8263f00|s1'
-991866206: 2865: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8263f20|s1'
-991866206: 2866: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8263f40|s1'
-991866206: 2867: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8263f60|s1'
-991866206: 2868: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8263f80|s1'
-991866206: 2869: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8263fa0|s1'
-991866206: 2870: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8263fc0|s1'
-991866206: 2871: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8263fe0|s1'
-991866206: 2872: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268000|s1'
-991866206: 2873: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268020|s1'
-991866206: 2874: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265180|s1'
-991866206: 2875: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266280|s1'
-991866206: 2876: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268040|s1'
-991866206: 2877: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268060|s1'
-991866206: 2878: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268080|s1'
-991866206: 2879: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82680a0|s1'
-991866206: 2880: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82680c0|s1'
-991866206: 2881: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82680e0|s1'
-991866206: 2882: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268100|s1'
-991866206: 2883: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82651c0|s1'
-991866206: 2884: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266300|s1'
-991866206: 2885: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268120|s1'
-991866206: 2886: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268140|s1'
-991866206: 2887: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268160|s1'
-991866206: 2888: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268180|s1'
-991866206: 2889: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82681a0|s1'
-991866206: 2890: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82681c0|s1'
-991866206: 2891: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82681e0|s1'
-991866206: 2892: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268200|s1'
-991866206: 2893: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268220|s1'
-991866206: 2894: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268240|s1'
-991866206: 2895: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268260|s1'
-991866206: 2896: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268280|s1'
-991866206: 2897: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265200|s1'
-991866206: 2898: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266380|s1'
-991866206: 2899: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82682a0|s1'
-991866206: 2900: checking heap
-991866206: 2900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82682c0|s1'
-991866206: 2901: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82682e0|s1'
-991866206: 2902: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268300|s1'
-991866206: 2903: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268320|s1'
-991866206: 2904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268340|s1'
-991866206: 2905: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268360|s1'
-991866206: 2906: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265240|s1'
-991866206: 2907: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266400|s1'
-991866206: 2908: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268380|s1'
-991866206: 2909: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82683a0|s1'
-991866206: 2910: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82683c0|s1'
-991866206: 2911: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82683e0|s1'
-991866206: 2912: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268400|s1'
-991866206: 2913: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268420|s1'
-991866206: 2914: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8268440|s1'
-991866206: 2915: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268460|s1'
-991866206: 2916: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268480|s1'
-991866206: 2917: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82684a0|s1'
-991866206: 2918: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82684c0|s1'
-991866206: 2919: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82684e0|s1'
-991866206: 2920: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265280|s1'
-991866206: 2921: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266480|s1'
-991866206: 2922: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268500|s1'
-991866206: 2923: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268520|s1'
-991866206: 2924: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268540|s1'
-991866206: 2925: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268560|s1'
-991866206: 2926: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268580|s1'
-991866206: 2927: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82685a0|s1'
-991866206: 2928: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82685c0|s1'
-991866206: 2929: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82652c0|s1'
-991866206: 2930: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266500|s1'
-991866206: 2931: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82685e0|s1'
-991866206: 2932: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268600|s1'
-991866206: 2933: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268620|s1'
-991866206: 2934: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268640|s1'
-991866206: 2935: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268660|s1'
-991866206: 2936: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268680|s1'
-991866206: 2937: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82686a0|s1'
-991866206: 2938: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82686c0|s1'
-991866206: 2939: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82686e0|s1'
-991866206: 2940: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268700|s1'
-991866206: 2941: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268720|s1'
-991866206: 2942: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268740|s1'
-991866206: 2943: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265300|s1'
-991866206: 2944: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266580|s1'
-991866206: 2945: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268760|s1'
-991866206: 2946: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268780|s1'
-991866206: 2947: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82687a0|s1'
-991866206: 2948: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82687c0|s1'
-991866206: 2949: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82687e0|s1'
-991866206: 2950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268800|s1'
-991866206: 2951: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268820|s1'
-991866206: 2952: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265340|s1'
-991866206: 2953: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266600|s1'
-991866206: 2954: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268840|s1'
-991866206: 2955: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268860|s1'
-991866206: 2956: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268880|s1'
-991866206: 2957: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82688a0|s1'
-991866206: 2958: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82688c0|s1'
-991866206: 2959: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82688e0|s1'
-991866206: 2960: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8268900|s1'
-991866206: 2961: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268920|s1'
-991866206: 2962: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268940|s1'
-991866206: 2963: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268960|s1'
-991866206: 2964: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268980|s1'
-991866206: 2965: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82689a0|s1'
-991866206: 2966: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265380|s1'
-991866206: 2967: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266680|s1'
-991866206: 2968: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82689c0|s1'
-991866206: 2969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82689e0|s1'
-991866206: 2970: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268a00|s1'
-991866206: 2971: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268a20|s1'
-991866206: 2972: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268a40|s1'
-991866206: 2973: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268a60|s1'
-991866206: 2974: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8268a80|s1'
-991866206: 2975: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268aa0|s1'
-991866206: 2976: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268ac0|s1'
-991866206: 2977: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268ae0|s1'
-991866206: 2978: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268b00|s1'
-991866206: 2979: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268b20|s1'
-991866206: 2980: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82653c0|s1'
-991866206: 2981: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266700|s1'
-991866206: 2982: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268b40|s1'
-991866206: 2983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268b60|s1'
-991866206: 2984: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268b80|s1'
-991866206: 2985: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268ba0|s1'
-991866206: 2986: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268bc0|s1'
-991866206: 2987: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268be0|s1'
-991866206: 2988: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8268c00|s1'
-991866206: 2989: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268c20|s1'
-991866206: 2990: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268c40|s1'
-991866206: 2991: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268c60|s1'
-991866206: 2992: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268c80|s1'
-991866206: 2993: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268ca0|s1'
-991866206: 2994: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265400|s1'
-991866206: 2995: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266780|s1'
-991866206: 2996: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268cc0|s1'
-991866206: 2997: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268ce0|s1'
-991866206: 2998: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268d00|s1'
-991866206: 2999: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268d20|s1'
-991866206: 3000: checking heap
-991866206: 3000: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268d40|s1'
-991866206: 3001: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268d60|s1'
-991866206: 3002: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8268d80|s1'
-991866206: 3003: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268da0|s1'
-991866206: 3004: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268dc0|s1'
-991866206: 3005: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268de0|s1'
-991866206: 3006: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268e00|s1'
-991866206: 3007: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268e20|s1'
-991866206: 3008: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265440|s1'
-991866206: 3009: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266800|s1'
-991866206: 3010: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268e40|s1'
-991866206: 3011: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268e60|s1'
-991866206: 3012: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8268e80|s1'
-991866206: 3013: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8268ea0|s1'
-991866206: 3014: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268ec0|s1'
-991866206: 3015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268ee0|s1'
-991866206: 3016: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8268f00|s1'
-991866206: 3017: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8268f20|s1'
-991866206: 3018: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8268f40|s1'
-991866206: 3019: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8268f60|s1'
-991866206: 3020: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8268f80|s1'
-991866206: 3021: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268fa0|s1'
-991866206: 3022: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265480|s1'
-991866206: 3023: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266880|s1'
-991866206: 3024: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8268fc0|s1'
-991866206: 3025: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8268fe0|s1'
-991866206: 3026: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b000|s1'
-991866206: 3027: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b020|s1'
-991866206: 3028: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b040|s1'
-991866206: 3029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b060|s1'
-991866206: 3030: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826b080|s1'
-991866206: 3031: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826b0a0|s1'
-991866206: 3032: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826b0c0|s1'
-991866206: 3033: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826b0e0|s1'
-991866206: 3034: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826b100|s1'
-991866206: 3035: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b120|s1'
-991866206: 3036: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82654c0|s1'
-991866206: 3037: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266900|s1'
-991866206: 3038: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b140|s1'
-991866206: 3039: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b160|s1'
-991866206: 3040: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b180|s1'
-991866206: 3041: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b1a0|s1'
-991866206: 3042: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b1c0|s1'
-991866206: 3043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b1e0|s1'
-991866206: 3044: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b200|s1'
-991866206: 3045: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b220|s1'
-991866206: 3046: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b240|s1'
-991866206: 3047: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265500|s1'
-991866206: 3048: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266980|s1'
-991866206: 3049: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b260|s1'
-991866206: 3050: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b280|s1'
-991866206: 3051: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b2a0|s1'
-991866206: 3052: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b2c0|s1'
-991866206: 3053: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b2e0|s1'
-991866206: 3054: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b300|s1'
-991866206: 3055: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826b320|s1'
-991866206: 3056: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826b340|s1'
-991866206: 3057: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826b360|s1'
-991866206: 3058: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826b380|s1'
-991866206: 3059: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826b3a0|s1'
-991866206: 3060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b3c0|s1'
-991866206: 3061: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265540|s1'
-991866206: 3062: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266a00|s1'
-991866206: 3063: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b3e0|s1'
-991866206: 3064: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b400|s1'
-991866206: 3065: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b420|s1'
-991866206: 3066: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b440|s1'
-991866206: 3067: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b460|s1'
-991866206: 3068: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b480|s1'
-991866206: 3069: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b4a0|s1'
-991866206: 3070: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b4c0|s1'
-991866206: 3071: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b4e0|s1'
-991866206: 3072: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265580|s1'
-991866206: 3073: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266a80|s1'
-991866206: 3074: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b500|s1'
-991866206: 3075: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b520|s1'
-991866206: 3076: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b540|s1'
-991866206: 3077: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b560|s1'
-991866206: 3078: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b580|s1'
-991866206: 3079: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b5a0|s1'
-991866206: 3080: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826b5c0|s1'
-991866206: 3081: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826b5e0|s1'
-991866206: 3082: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826b600|s1'
-991866206: 3083: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826b620|s1'
-991866206: 3084: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826b640|s1'
-991866206: 3085: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b660|s1'
-991866206: 3086: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82655c0|s1'
-991866206: 3087: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266b00|s1'
-991866206: 3088: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b680|s1'
-991866206: 3089: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b6a0|s1'
-991866206: 3090: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b6c0|s1'
-991866206: 3091: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b6e0|s1'
-991866206: 3092: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b700|s1'
-991866206: 3093: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b720|s1'
-991866206: 3094: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b740|s1'
-991866206: 3095: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b760|s1'
-991866206: 3096: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b780|s1'
-991866206: 3097: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265600|s1'
-991866206: 3098: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266b80|s1'
-991866206: 3099: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b7a0|s1'
-991866206: 3100: checking heap
-991866206: 3100: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b7c0|s1'
-991866206: 3101: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b7e0|s1'
-991866206: 3102: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b800|s1'
-991866206: 3103: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b820|s1'
-991866206: 3104: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b840|s1'
-991866206: 3105: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826b860|s1'
-991866206: 3106: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826b880|s1'
-991866206: 3107: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826b8a0|s1'
-991866206: 3108: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826b8c0|s1'
-991866206: 3109: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826b8e0|s1'
-991866206: 3110: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b900|s1'
-991866206: 3111: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265640|s1'
-991866206: 3112: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266c00|s1'
-991866206: 3113: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b920|s1'
-991866206: 3114: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b940|s1'
-991866206: 3115: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826b960|s1'
-991866206: 3116: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826b980|s1'
-991866206: 3117: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b9a0|s1'
-991866206: 3118: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826b9c0|s1'
-991866206: 3119: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826b9e0|s1'
-991866206: 3120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826ba00|s1'
-991866206: 3121: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826ba20|s1'
-991866206: 3122: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265680|s1'
-991866206: 3123: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266c80|s1'
-991866206: 3124: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826ba40|s1'
-991866206: 3125: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826ba60|s1'
-991866206: 3126: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826ba80|s1'
-991866206: 3127: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826baa0|s1'
-991866206: 3128: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bac0|s1'
-991866206: 3129: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bae0|s1'
-991866206: 3130: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826bb00|s1'
-991866206: 3131: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826bb20|s1'
-991866206: 3132: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826bb40|s1'
-991866206: 3133: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826bb60|s1'
-991866206: 3134: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826bb80|s1'
-991866206: 3135: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bba0|s1'
-991866206: 3136: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82656c0|s1'
-991866206: 3137: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266d00|s1'
-991866206: 3138: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bbc0|s1'
-991866206: 3139: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bbe0|s1'
-991866206: 3140: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826bc00|s1'
-991866206: 3141: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826bc20|s1'
-991866206: 3142: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bc40|s1'
-991866206: 3143: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bc60|s1'
-991866206: 3144: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bc80|s1'
-991866206: 3145: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bca0|s1'
-991866206: 3146: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bcc0|s1'
-991866206: 3147: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265700|s1'
-991866206: 3148: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266d80|s1'
-991866206: 3149: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bce0|s1'
-991866206: 3150: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bd00|s1'
-991866206: 3151: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826bd20|s1'
-991866206: 3152: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826bd40|s1'
-991866206: 3153: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bd60|s1'
-991866206: 3154: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bd80|s1'
-991866206: 3155: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826bda0|s1'
-991866206: 3156: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826bdc0|s1'
-991866206: 3157: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826bde0|s1'
-991866206: 3158: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826be00|s1'
-991866206: 3159: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826be20|s1'
-991866206: 3160: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826be40|s1'
-991866206: 3161: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265740|s1'
-991866206: 3162: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266e00|s1'
-991866206: 3163: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826be60|s1'
-991866206: 3164: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826be80|s1'
-991866206: 3165: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826bea0|s1'
-991866206: 3166: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826bec0|s1'
-991866206: 3167: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bee0|s1'
-991866206: 3168: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bf00|s1'
-991866206: 3169: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bf20|s1'
-991866206: 3170: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265780|s1'
-991866206: 3171: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266e80|s1'
-991866206: 3172: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bf40|s1'
-991866206: 3173: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bf60|s1'
-991866206: 3174: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826bf80|s1'
-991866206: 3175: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826bfa0|s1'
-991866206: 3176: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826bfc0|s1'
-991866206: 3177: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826bfe0|s1'
-991866206: 3178: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d000|s1'
-991866206: 3179: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82657c0|s1'
-991866206: 3180: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266f00|s1'
-991866206: 3181: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d020|s1'
-991866206: 3182: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d040|s1'
-991866206: 3183: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d060|s1'
-991866206: 3184: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d080|s1'
-991866206: 3185: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d0a0|s1'
-991866206: 3186: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d0c0|s1'
-991866206: 3187: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826d0e0|s1'
-991866206: 3188: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826d100|s1'
-991866206: 3189: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826d120|s1'
-991866206: 3190: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826d140|s1'
-991866206: 3191: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826d160|s1'
-991866206: 3192: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d180|s1'
-991866206: 3193: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265800|s1'
-991866206: 3194: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8266f80|s1'
-991866206: 3195: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d1a0|s1'
-991866206: 3196: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d1c0|s1'
-991866206: 3197: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d1e0|s1'
-991866206: 3198: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d200|s1'
-991866206: 3199: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d220|s1'
-991866206: 3200: checking heap
-991866206: 3200: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d240|s1'
-991866206: 3201: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d260|s1'
-991866206: 3202: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265840|s1'
-991866206: 3203: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f000|s1'
-991866206: 3204: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d280|s1'
-991866206: 3205: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d2a0|s1'
-991866206: 3206: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d2c0|s1'
-991866206: 3207: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d2e0|s1'
-991866206: 3208: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d300|s1'
-991866206: 3209: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d320|s1'
-991866206: 3210: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d340|s1'
-991866206: 3211: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265880|s1'
-991866206: 3212: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f080|s1'
-991866206: 3213: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d360|s1'
-991866206: 3214: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d380|s1'
-991866206: 3215: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d3a0|s1'
-991866206: 3216: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d3c0|s1'
-991866206: 3217: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d3e0|s1'
-991866206: 3218: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d400|s1'
-991866206: 3219: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826d420|s1'
-991866206: 3220: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826d440|s1'
-991866206: 3221: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826d460|s1'
-991866206: 3222: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826d480|s1'
-991866206: 3223: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826d4a0|s1'
-991866206: 3224: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d4c0|s1'
-991866206: 3225: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82658c0|s1'
-991866206: 3226: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f100|s1'
-991866206: 3227: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d4e0|s1'
-991866206: 3228: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d500|s1'
-991866206: 3229: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d520|s1'
-991866206: 3230: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d540|s1'
-991866206: 3231: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d560|s1'
-991866206: 3232: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d580|s1'
-991866206: 3233: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d5a0|s1'
-991866206: 3234: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265900|s1'
-991866206: 3235: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f180|s1'
-991866206: 3236: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d5c0|s1'
-991866206: 3237: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d5e0|s1'
-991866206: 3238: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d600|s1'
-991866206: 3239: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d620|s1'
-991866206: 3240: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d640|s1'
-991866206: 3241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d660|s1'
-991866206: 3242: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826d680|s1'
-991866206: 3243: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826d6a0|s1'
-991866206: 3244: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826d6c0|s1'
-991866206: 3245: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826d6e0|s1'
-991866206: 3246: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826d700|s1'
-991866206: 3247: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d720|s1'
-991866206: 3248: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265940|s1'
-991866206: 3249: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f200|s1'
-991866206: 3250: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d740|s1'
-991866206: 3251: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d760|s1'
-991866206: 3252: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d780|s1'
-991866206: 3253: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d7a0|s1'
-991866206: 3254: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d7c0|s1'
-991866206: 3255: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d7e0|s1'
-991866206: 3256: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d800|s1'
-991866206: 3257: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265980|s1'
-991866206: 3258: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f280|s1'
-991866206: 3259: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d820|s1'
-991866206: 3260: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d840|s1'
-991866206: 3261: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d860|s1'
-991866206: 3262: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826d880|s1'
-991866206: 3263: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d8a0|s1'
-991866206: 3264: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d8c0|s1'
-991866206: 3265: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826d8e0|s1'
-991866206: 3266: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826d900|s1'
-991866206: 3267: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826d920|s1'
-991866206: 3268: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826d940|s1'
-991866206: 3269: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826d960|s1'
-991866206: 3270: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d980|s1'
-991866206: 3271: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82659c0|s1'
-991866206: 3272: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f300|s1'
-991866206: 3273: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826d9a0|s1'
-991866206: 3274: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826d9c0|s1'
-991866206: 3275: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826d9e0|s1'
-991866206: 3276: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826da00|s1'
-991866206: 3277: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826da20|s1'
-991866206: 3278: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826da40|s1'
-991866206: 3279: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826da60|s1'
-991866206: 3280: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826da80|s1'
-991866206: 3281: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826daa0|s1'
-991866206: 3282: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265a00|s1'
-991866206: 3283: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f380|s1'
-991866206: 3284: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dac0|s1'
-991866206: 3285: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dae0|s1'
-991866206: 3286: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826db00|s1'
-991866206: 3287: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826db20|s1'
-991866206: 3288: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826db40|s1'
-991866206: 3289: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826db60|s1'
-991866206: 3290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826db80|s1'
-991866206: 3291: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265a40|s1'
-991866206: 3292: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f400|s1'
-991866206: 3293: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dba0|s1'
-991866206: 3294: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dbc0|s1'
-991866206: 3295: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826dbe0|s1'
-991866206: 3296: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826dc00|s1'
-991866206: 3297: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dc20|s1'
-991866206: 3298: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dc40|s1'
-991866206: 3299: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826dc60|s1'
-991866206: 3300: checking heap
-991866206: 3300: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x826dc80|s1'
-991866206: 3301: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x826dca0|s1'
-991866206: 3302: *** alloc: at 'cttable.i:561' for 2048 bytes, got '0x8228800|s3'
-991866206: 3303: *** free: at 'cttable.i:575' pnt '0x8233000|s2': size 1024, alloced at 'cttable.i:561'
-991866206: 3304: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x826dcc0|s1'
-991866206: 3305: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x826dce0|s1'
-991866206: 3306: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dd00|s1'
-991866206: 3307: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265a80|s1'
-991866206: 3308: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f480|s1'
-991866206: 3309: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dd20|s1'
-991866206: 3310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dd40|s1'
-991866206: 3311: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826dd60|s1'
-991866206: 3312: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826dd80|s1'
-991866206: 3313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dda0|s1'
-991866206: 3314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826ddc0|s1'
-991866206: 3315: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dde0|s1'
-991866206: 3316: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826de00|s1'
-991866206: 3317: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826de20|s1'
-991866206: 3318: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265ac0|s1'
-991866206: 3319: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f500|s1'
-991866206: 3320: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826de40|s1'
-991866206: 3321: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826de60|s1'
-991866206: 3322: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826de80|s1'
-991866206: 3323: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826dea0|s1'
-991866206: 3324: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dec0|s1'
-991866206: 3325: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dee0|s1'
-991866206: 3326: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826df00|s1'
-991866206: 3327: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265b00|s1'
-991866206: 3328: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f580|s1'
-991866206: 3329: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826df20|s1'
-991866206: 3330: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826df40|s1'
-991866206: 3331: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x826df60|s1'
-991866206: 3332: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x826df80|s1'
-991866206: 3333: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x826dfa0|s1'
-991866206: 3334: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x826dfc0|s1'
-991866206: 3335: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x826dfe0|s1'
-991866206: 3336: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8271000|s1'
-991866206: 3337: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8271020|s1'
-991866206: 3338: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8271040|s1'
-991866206: 3339: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8271060|s1'
-991866206: 3340: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271080|s1'
-991866206: 3341: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265b40|s1'
-991866206: 3342: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f600|s1'
-991866206: 3343: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82710a0|s1'
-991866206: 3344: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82710c0|s1'
-991866206: 3345: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82710e0|s1'
-991866206: 3346: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271100|s1'
-991866206: 3347: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271120|s1'
-991866206: 3348: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271140|s1'
-991866206: 3349: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8271160|s1'
-991866206: 3350: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8271180|s1'
-991866206: 3351: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82711a0|s1'
-991866206: 3352: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82711c0|s1'
-991866206: 3353: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82711e0|s1'
-991866206: 3354: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271200|s1'
-991866206: 3355: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265b80|s1'
-991866206: 3356: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f680|s1'
-991866206: 3357: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271220|s1'
-991866206: 3358: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271240|s1'
-991866206: 3359: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271260|s1'
-991866206: 3360: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271280|s1'
-991866206: 3361: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82712a0|s1'
-991866206: 3362: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82712c0|s1'
-991866206: 3363: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82712e0|s1'
-991866206: 3364: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8271300|s1'
-991866206: 3365: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8271320|s1'
-991866206: 3366: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8271340|s1'
-991866206: 3367: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8271360|s1'
-991866206: 3368: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271380|s1'
-991866206: 3369: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265bc0|s1'
-991866206: 3370: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f700|s1'
-991866206: 3371: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82713a0|s1'
-991866206: 3372: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82713c0|s1'
-991866206: 3373: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82713e0|s1'
-991866206: 3374: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271400|s1'
-991866206: 3375: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271420|s1'
-991866206: 3376: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271440|s1'
-991866206: 3377: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271460|s1'
-991866206: 3378: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271480|s1'
-991866206: 3379: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82714a0|s1'
-991866206: 3380: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265c00|s1'
-991866206: 3381: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f780|s1'
-991866206: 3382: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82714c0|s1'
-991866206: 3383: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82714e0|s1'
-991866206: 3384: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271500|s1'
-991866206: 3385: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271520|s1'
-991866206: 3386: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271540|s1'
-991866206: 3387: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271560|s1'
-991866206: 3388: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271580|s1'
-991866206: 3389: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265c40|s1'
-991866206: 3390: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f800|s1'
-991866206: 3391: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82715a0|s1'
-991866206: 3392: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82715c0|s1'
-991866206: 3393: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82715e0|s1'
-991866206: 3394: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271600|s1'
-991866206: 3395: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271620|s1'
-991866206: 3396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271640|s1'
-991866206: 3397: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8271660|s1'
-991866206: 3398: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8271680|s1'
-991866206: 3399: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82716a0|s1'
-991866206: 3400: checking heap
-991866206: 3400: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82716c0|s1'
-991866206: 3401: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82716e0|s1'
-991866206: 3402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271700|s1'
-991866206: 3403: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265c80|s1'
-991866206: 3404: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f880|s1'
-991866206: 3405: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271720|s1'
-991866206: 3406: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271740|s1'
-991866206: 3407: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271760|s1'
-991866206: 3408: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271780|s1'
-991866206: 3409: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82717a0|s1'
-991866206: 3410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82717c0|s1'
-991866206: 3411: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82717e0|s1'
-991866206: 3412: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271800|s1'
-991866206: 3413: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271820|s1'
-991866206: 3414: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265cc0|s1'
-991866206: 3415: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f900|s1'
-991866206: 3416: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271840|s1'
-991866206: 3417: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271860|s1'
-991866206: 3418: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271880|s1'
-991866206: 3419: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82718a0|s1'
-991866206: 3420: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82718c0|s1'
-991866206: 3421: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82718e0|s1'
-991866206: 3422: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271900|s1'
-991866206: 3423: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265d00|s1'
-991866206: 3424: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826f980|s1'
-991866206: 3425: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271920|s1'
-991866206: 3426: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271940|s1'
-991866206: 3427: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271960|s1'
-991866206: 3428: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271980|s1'
-991866206: 3429: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82719a0|s1'
-991866206: 3430: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82719c0|s1'
-991866206: 3431: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82719e0|s1'
-991866206: 3432: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8271a00|s1'
-991866206: 3433: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8271a20|s1'
-991866206: 3434: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8271a40|s1'
-991866206: 3435: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8271a60|s1'
-991866206: 3436: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271a80|s1'
-991866206: 3437: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265d40|s1'
-991866206: 3438: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fa00|s1'
-991866206: 3439: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271aa0|s1'
-991866206: 3440: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271ac0|s1'
-991866206: 3441: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271ae0|s1'
-991866206: 3442: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271b00|s1'
-991866206: 3443: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271b20|s1'
-991866206: 3444: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271b40|s1'
-991866206: 3445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271b60|s1'
-991866206: 3446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271b80|s1'
-991866206: 3447: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271ba0|s1'
-991866206: 3448: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265d80|s1'
-991866206: 3449: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fa80|s1'
-991866206: 3450: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271bc0|s1'
-991866206: 3451: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271be0|s1'
-991866206: 3452: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271c00|s1'
-991866206: 3453: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271c20|s1'
-991866206: 3454: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271c40|s1'
-991866206: 3455: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271c60|s1'
-991866206: 3456: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271c80|s1'
-991866206: 3457: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265dc0|s1'
-991866206: 3458: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fb00|s1'
-991866206: 3459: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271ca0|s1'
-991866206: 3460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271cc0|s1'
-991866206: 3461: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271ce0|s1'
-991866206: 3462: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271d00|s1'
-991866206: 3463: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271d20|s1'
-991866206: 3464: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271d40|s1'
-991866206: 3465: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8271d60|s1'
-991866206: 3466: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8271d80|s1'
-991866206: 3467: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8271da0|s1'
-991866206: 3468: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8271dc0|s1'
-991866206: 3469: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x8271de0|s1'
-991866206: 3470: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8271e00|s1'
-991866206: 3471: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8271e20|s1'
-991866206: 3472: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8271e40|s1'
-991866206: 3473: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271e60|s1'
-991866206: 3474: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265e00|s1'
-991866206: 3475: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fb80|s1'
-991866206: 3476: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271e80|s1'
-991866206: 3477: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271ea0|s1'
-991866206: 3478: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271ec0|s1'
-991866206: 3479: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271ee0|s1'
-991866206: 3480: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271f00|s1'
-991866206: 3481: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271f20|s1'
-991866206: 3482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271f40|s1'
-991866206: 3483: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265e40|s1'
-991866206: 3484: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fc00|s1'
-991866206: 3485: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271f60|s1'
-991866206: 3486: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8271f80|s1'
-991866206: 3487: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8271fa0|s1'
-991866206: 3488: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8271fc0|s1'
-991866206: 3489: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8271fe0|s1'
-991866206: 3490: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273000|s1'
-991866206: 3491: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273020|s1'
-991866206: 3492: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273040|s1'
-991866206: 3493: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273060|s1'
-991866206: 3494: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273080|s1'
-991866206: 3495: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82730a0|s1'
-991866206: 3496: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82730c0|s1'
-991866206: 3497: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265e80|s1'
-991866206: 3498: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fc80|s1'
-991866206: 3499: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82730e0|s1'
-991866206: 3500: checking heap
-991866206: 3500: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273100|s1'
-991866206: 3501: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273120|s1'
-991866206: 3502: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273140|s1'
-991866206: 3503: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273160|s1'
-991866206: 3504: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273180|s1'
-991866206: 3505: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82731a0|s1'
-991866206: 3506: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265ec0|s1'
-991866206: 3507: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fd00|s1'
-991866206: 3508: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82731c0|s1'
-991866206: 3509: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82731e0|s1'
-991866206: 3510: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273200|s1'
-991866206: 3511: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273220|s1'
-991866206: 3512: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273240|s1'
-991866206: 3513: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273260|s1'
-991866206: 3514: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273280|s1'
-991866206: 3515: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82732a0|s1'
-991866206: 3516: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82732c0|s1'
-991866206: 3517: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82732e0|s1'
-991866206: 3518: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273300|s1'
-991866206: 3519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273320|s1'
-991866206: 3520: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265f00|s1'
-991866206: 3521: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fd80|s1'
-991866206: 3522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273340|s1'
-991866206: 3523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273360|s1'
-991866206: 3524: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273380|s1'
-991866206: 3525: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82733a0|s1'
-991866206: 3526: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82733c0|s1'
-991866206: 3527: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82733e0|s1'
-991866206: 3528: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273400|s1'
-991866206: 3529: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265f40|s1'
-991866206: 3530: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fe00|s1'
-991866206: 3531: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273420|s1'
-991866206: 3532: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273440|s1'
-991866206: 3533: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273460|s1'
-991866206: 3534: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273480|s1'
-991866206: 3535: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82734a0|s1'
-991866206: 3536: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82734c0|s1'
-991866206: 3537: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82734e0|s1'
-991866206: 3538: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273500|s1'
-991866206: 3539: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273520|s1'
-991866206: 3540: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273540|s1'
-991866206: 3541: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273560|s1'
-991866206: 3542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273580|s1'
-991866206: 3543: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265f80|s1'
-991866206: 3544: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826fe80|s1'
-991866206: 3545: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82735a0|s1'
-991866206: 3546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82735c0|s1'
-991866206: 3547: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82735e0|s1'
-991866206: 3548: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273600|s1'
-991866206: 3549: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273620|s1'
-991866206: 3550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273640|s1'
-991866206: 3551: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273660|s1'
-991866206: 3552: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8265fc0|s1'
-991866206: 3553: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826ff00|s1'
-991866206: 3554: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273680|s1'
-991866206: 3555: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82736a0|s1'
-991866206: 3556: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82736c0|s1'
-991866206: 3557: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82736e0|s1'
-991866206: 3558: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273700|s1'
-991866206: 3559: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273720|s1'
-991866206: 3560: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273740|s1'
-991866206: 3561: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273760|s1'
-991866206: 3562: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273780|s1'
-991866206: 3563: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82737a0|s1'
-991866206: 3564: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82737c0|s1'
-991866206: 3565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82737e0|s1'
-991866206: 3566: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275000|s1'
-991866206: 3567: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x826ff80|s1'
-991866206: 3568: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273800|s1'
-991866206: 3569: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273820|s1'
-991866206: 3570: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273840|s1'
-991866206: 3571: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273860|s1'
-991866206: 3572: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273880|s1'
-991866206: 3573: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82738a0|s1'
-991866206: 3574: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82738c0|s1'
-991866206: 3575: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82738e0|s1'
-991866206: 3576: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273900|s1'
-991866206: 3577: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273920|s1'
-991866206: 3578: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273940|s1'
-991866206: 3579: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273960|s1'
-991866206: 3580: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275040|s1'
-991866206: 3581: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276000|s1'
-991866206: 3582: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273980|s1'
-991866206: 3583: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82739a0|s1'
-991866206: 3584: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82739c0|s1'
-991866206: 3585: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82739e0|s1'
-991866206: 3586: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273a00|s1'
-991866206: 3587: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273a20|s1'
-991866206: 3588: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273a40|s1'
-991866206: 3589: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273a60|s1'
-991866206: 3590: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273a80|s1'
-991866206: 3591: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273aa0|s1'
-991866206: 3592: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273ac0|s1'
-991866206: 3593: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273ae0|s1'
-991866206: 3594: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273b00|s1'
-991866206: 3595: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273b20|s1'
-991866206: 3596: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273b40|s1'
-991866206: 3597: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273b60|s1'
-991866206: 3598: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273b80|s1'
-991866206: 3599: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273ba0|s1'
-991866206: 3600: checking heap
-991866206: 3600: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273bc0|s1'
-991866206: 3601: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273be0|s1'
-991866206: 3602: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273c00|s1'
-991866206: 3603: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273c20|s1'
-991866206: 3604: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275080|s1'
-991866206: 3605: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276080|s1'
-991866206: 3606: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273c40|s1'
-991866206: 3607: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273c60|s1'
-991866206: 3608: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273c80|s1'
-991866206: 3609: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273ca0|s1'
-991866206: 3610: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273cc0|s1'
-991866206: 3611: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273ce0|s1'
-991866206: 3612: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273d00|s1'
-991866206: 3613: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273d20|s1'
-991866206: 3614: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273d40|s1'
-991866206: 3615: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273d60|s1'
-991866206: 3616: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273d80|s1'
-991866206: 3617: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273da0|s1'
-991866206: 3618: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273dc0|s1'
-991866206: 3619: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273de0|s1'
-991866206: 3620: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82750c0|s1'
-991866206: 3621: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276100|s1'
-991866206: 3622: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273e00|s1'
-991866206: 3623: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273e20|s1'
-991866206: 3624: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8273e40|s1'
-991866206: 3625: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8273e60|s1'
-991866206: 3626: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273e80|s1'
-991866206: 3627: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273ea0|s1'
-991866206: 3628: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273ec0|s1'
-991866206: 3629: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273ee0|s1'
-991866206: 3630: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8273f00|s1'
-991866206: 3631: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8273f20|s1'
-991866206: 3632: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8273f40|s1'
-991866206: 3633: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8273f60|s1'
-991866206: 3634: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8273f80|s1'
-991866206: 3635: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273fa0|s1'
-991866206: 3636: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275100|s1'
-991866206: 3637: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276180|s1'
-991866206: 3638: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8273fc0|s1'
-991866206: 3639: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8273fe0|s1'
-991866206: 3640: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278000|s1'
-991866206: 3641: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278020|s1'
-991866206: 3642: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278040|s1'
-991866206: 3643: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278060|s1'
-991866206: 3644: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278080|s1'
-991866206: 3645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82780a0|s1'
-991866206: 3646: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82780c0|s1'
-991866206: 3647: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82780e0|s1'
-991866206: 3648: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8278100|s1'
-991866206: 3649: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8278120|s1'
-991866206: 3650: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278140|s1'
-991866206: 3651: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278160|s1'
-991866206: 3652: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275140|s1'
-991866206: 3653: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276200|s1'
-991866206: 3654: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278180|s1'
-991866206: 3655: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82781a0|s1'
-991866206: 3656: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82781c0|s1'
-991866206: 3657: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82781e0|s1'
-991866206: 3658: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278200|s1'
-991866206: 3659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278220|s1'
-991866206: 3660: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278240|s1'
-991866206: 3661: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275180|s1'
-991866206: 3662: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276280|s1'
-991866206: 3663: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278260|s1'
-991866206: 3664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278280|s1'
-991866206: 3665: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82782a0|s1'
-991866206: 3666: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82782c0|s1'
-991866206: 3667: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82782e0|s1'
-991866206: 3668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278300|s1'
-991866206: 3669: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278320|s1'
-991866206: 3670: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8278340|s1'
-991866206: 3671: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8278360|s1'
-991866206: 3672: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8278380|s1'
-991866206: 3673: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82783a0|s1'
-991866206: 3674: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82783c0|s1'
-991866206: 3675: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82751c0|s1'
-991866206: 3676: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276300|s1'
-991866206: 3677: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82783e0|s1'
-991866206: 3678: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278400|s1'
-991866206: 3679: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278420|s1'
-991866206: 3680: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278440|s1'
-991866206: 3681: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278460|s1'
-991866206: 3682: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278480|s1'
-991866206: 3683: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82784a0|s1'
-991866206: 3684: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275200|s1'
-991866206: 3685: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276380|s1'
-991866206: 3686: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82784c0|s1'
-991866206: 3687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82784e0|s1'
-991866206: 3688: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278500|s1'
-991866206: 3689: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278520|s1'
-991866206: 3690: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278540|s1'
-991866206: 3691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278560|s1'
-991866206: 3692: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278580|s1'
-991866206: 3693: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82785a0|s1'
-991866206: 3694: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82785c0|s1'
-991866206: 3695: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82785e0|s1'
-991866206: 3696: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278600|s1'
-991866206: 3697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278620|s1'
-991866206: 3698: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275240|s1'
-991866206: 3699: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276400|s1'
-991866206: 3700: checking heap
-991866206: 3700: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278640|s1'
-991866206: 3701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278660|s1'
-991866206: 3702: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278680|s1'
-991866206: 3703: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82786a0|s1'
-991866206: 3704: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82786c0|s1'
-991866206: 3705: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82786e0|s1'
-991866206: 3706: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278700|s1'
-991866206: 3707: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8278720|s1'
-991866206: 3708: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8278740|s1'
-991866206: 3709: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8278760|s1'
-991866206: 3710: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278780|s1'
-991866206: 3711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82787a0|s1'
-991866206: 3712: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275280|s1'
-991866206: 3713: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276480|s1'
-991866206: 3714: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82787c0|s1'
-991866206: 3715: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82787e0|s1'
-991866206: 3716: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278800|s1'
-991866206: 3717: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278820|s1'
-991866206: 3718: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278840|s1'
-991866206: 3719: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278860|s1'
-991866206: 3720: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278880|s1'
-991866206: 3721: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82788a0|s1'
-991866206: 3722: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82788c0|s1'
-991866206: 3723: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82788e0|s1'
-991866206: 3724: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278900|s1'
-991866206: 3725: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278920|s1'
-991866206: 3726: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82752c0|s1'
-991866206: 3727: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276500|s1'
-991866206: 3728: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278940|s1'
-991866206: 3729: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278960|s1'
-991866206: 3730: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278980|s1'
-991866206: 3731: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82789a0|s1'
-991866206: 3732: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82789c0|s1'
-991866206: 3733: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82789e0|s1'
-991866206: 3734: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278a00|s1'
-991866206: 3735: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8278a20|s1'
-991866206: 3736: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8278a40|s1'
-991866206: 3737: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8278a60|s1'
-991866206: 3738: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278a80|s1'
-991866206: 3739: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278aa0|s1'
-991866206: 3740: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275300|s1'
-991866206: 3741: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276580|s1'
-991866206: 3742: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278ac0|s1'
-991866206: 3743: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278ae0|s1'
-991866206: 3744: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278b00|s1'
-991866206: 3745: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278b20|s1'
-991866206: 3746: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278b40|s1'
-991866206: 3747: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278b60|s1'
-991866206: 3748: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278b80|s1'
-991866206: 3749: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8278ba0|s1'
-991866206: 3750: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8278bc0|s1'
-991866206: 3751: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8278be0|s1'
-991866206: 3752: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278c00|s1'
-991866206: 3753: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278c20|s1'
-991866206: 3754: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275340|s1'
-991866206: 3755: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276600|s1'
-991866206: 3756: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278c40|s1'
-991866206: 3757: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278c60|s1'
-991866206: 3758: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278c80|s1'
-991866206: 3759: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278ca0|s1'
-991866206: 3760: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278cc0|s1'
-991866206: 3761: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278ce0|s1'
-991866206: 3762: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278d00|s1'
-991866206: 3763: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275380|s1'
-991866206: 3764: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276680|s1'
-991866206: 3765: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278d20|s1'
-991866206: 3766: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278d40|s1'
-991866206: 3767: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278d60|s1'
-991866206: 3768: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278d80|s1'
-991866206: 3769: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278da0|s1'
-991866206: 3770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278dc0|s1'
-991866206: 3771: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8278de0|s1'
-991866206: 3772: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8278e00|s1'
-991866206: 3773: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8278e20|s1'
-991866206: 3774: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8278e40|s1'
-991866206: 3775: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8278e60|s1'
-991866206: 3776: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278e80|s1'
-991866206: 3777: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82753c0|s1'
-991866206: 3778: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276700|s1'
-991866206: 3779: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278ea0|s1'
-991866206: 3780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278ec0|s1'
-991866206: 3781: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278ee0|s1'
-991866206: 3782: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278f00|s1'
-991866206: 3783: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278f20|s1'
-991866206: 3784: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278f40|s1'
-991866206: 3785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278f60|s1'
-991866206: 3786: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275400|s1'
-991866206: 3787: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276780|s1'
-991866206: 3788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8278f80|s1'
-991866206: 3789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8278fa0|s1'
-991866206: 3790: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8278fc0|s1'
-991866206: 3791: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8278fe0|s1'
-991866206: 3792: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a000|s1'
-991866206: 3793: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a020|s1'
-991866206: 3794: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827a040|s1'
-991866206: 3795: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827a060|s1'
-991866206: 3796: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827a080|s1'
-991866206: 3797: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827a0a0|s1'
-991866206: 3798: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827a0c0|s1'
-991866206: 3799: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a0e0|s1'
-991866206: 3800: checking heap
-991866206: 3800: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275440|s1'
-991866206: 3801: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276800|s1'
-991866206: 3802: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a100|s1'
-991866206: 3803: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a120|s1'
-991866206: 3804: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a140|s1'
-991866206: 3805: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a160|s1'
-991866206: 3806: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a180|s1'
-991866206: 3807: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a1a0|s1'
-991866206: 3808: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a1c0|s1'
-991866206: 3809: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a1e0|s1'
-991866206: 3810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a200|s1'
-991866206: 3811: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275480|s1'
-991866206: 3812: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276880|s1'
-991866206: 3813: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a220|s1'
-991866206: 3814: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a240|s1'
-991866206: 3815: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a260|s1'
-991866206: 3816: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a280|s1'
-991866206: 3817: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a2a0|s1'
-991866206: 3818: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a2c0|s1'
-991866206: 3819: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a2e0|s1'
-991866206: 3820: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82754c0|s1'
-991866206: 3821: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276900|s1'
-991866206: 3822: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a300|s1'
-991866206: 3823: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a320|s1'
-991866206: 3824: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a340|s1'
-991866206: 3825: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a360|s1'
-991866206: 3826: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a380|s1'
-991866206: 3827: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a3a0|s1'
-991866206: 3828: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a3c0|s1'
-991866206: 3829: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275500|s1'
-991866206: 3830: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276980|s1'
-991866206: 3831: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a3e0|s1'
-991866206: 3832: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a400|s1'
-991866206: 3833: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a420|s1'
-991866206: 3834: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a440|s1'
-991866206: 3835: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a460|s1'
-991866206: 3836: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a480|s1'
-991866206: 3837: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827a4a0|s1'
-991866206: 3838: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827a4c0|s1'
-991866206: 3839: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827a4e0|s1'
-991866206: 3840: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827a500|s1'
-991866206: 3841: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827a520|s1'
-991866206: 3842: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a540|s1'
-991866206: 3843: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275540|s1'
-991866206: 3844: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276a00|s1'
-991866206: 3845: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a560|s1'
-991866206: 3846: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a580|s1'
-991866206: 3847: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a5a0|s1'
-991866206: 3848: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a5c0|s1'
-991866206: 3849: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a5e0|s1'
-991866206: 3850: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a600|s1'
-991866206: 3851: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a620|s1'
-991866206: 3852: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a640|s1'
-991866206: 3853: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a660|s1'
-991866206: 3854: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275580|s1'
-991866206: 3855: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276a80|s1'
-991866206: 3856: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a680|s1'
-991866206: 3857: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a6a0|s1'
-991866206: 3858: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a6c0|s1'
-991866206: 3859: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a6e0|s1'
-991866206: 3860: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a700|s1'
-991866206: 3861: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a720|s1'
-991866206: 3862: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a740|s1'
-991866206: 3863: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82755c0|s1'
-991866206: 3864: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276b00|s1'
-991866206: 3865: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a760|s1'
-991866206: 3866: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a780|s1'
-991866206: 3867: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a7a0|s1'
-991866206: 3868: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a7c0|s1'
-991866206: 3869: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a7e0|s1'
-991866206: 3870: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a800|s1'
-991866206: 3871: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a820|s1'
-991866206: 3872: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275600|s1'
-991866206: 3873: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276b80|s1'
-991866206: 3874: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a840|s1'
-991866206: 3875: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a860|s1'
-991866206: 3876: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827a880|s1'
-991866206: 3877: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827a8a0|s1'
-991866206: 3878: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a8c0|s1'
-991866206: 3879: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a8e0|s1'
-991866206: 3880: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827a900|s1'
-991866206: 3881: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827a920|s1'
-991866206: 3882: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827a940|s1'
-991866206: 3883: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827a960|s1'
-991866206: 3884: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827a980|s1'
-991866206: 3885: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a9a0|s1'
-991866206: 3886: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275640|s1'
-991866206: 3887: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276c00|s1'
-991866206: 3888: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827a9c0|s1'
-991866206: 3889: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827a9e0|s1'
-991866206: 3890: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827aa00|s1'
-991866206: 3891: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827aa20|s1'
-991866206: 3892: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827aa40|s1'
-991866206: 3893: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827aa60|s1'
-991866206: 3894: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827aa80|s1'
-991866206: 3895: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275680|s1'
-991866206: 3896: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276c80|s1'
-991866206: 3897: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827aaa0|s1'
-991866206: 3898: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827aac0|s1'
-991866206: 3899: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827aae0|s1'
-991866206: 3900: checking heap
-991866206: 3900: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827ab00|s1'
-991866206: 3901: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ab20|s1'
-991866206: 3902: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ab40|s1'
-991866206: 3903: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ab60|s1'
-991866206: 3904: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82756c0|s1'
-991866206: 3905: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276d00|s1'
-991866206: 3906: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ab80|s1'
-991866206: 3907: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827aba0|s1'
-991866206: 3908: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827abc0|s1'
-991866206: 3909: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827abe0|s1'
-991866206: 3910: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ac00|s1'
-991866206: 3911: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ac20|s1'
-991866206: 3912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ac40|s1'
-991866206: 3913: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275700|s1'
-991866206: 3914: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276d80|s1'
-991866206: 3915: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ac60|s1'
-991866206: 3916: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ac80|s1'
-991866206: 3917: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827aca0|s1'
-991866206: 3918: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827acc0|s1'
-991866206: 3919: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ace0|s1'
-991866206: 3920: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ad00|s1'
-991866206: 3921: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827ad20|s1'
-991866206: 3922: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827ad40|s1'
-991866206: 3923: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827ad60|s1'
-991866206: 3924: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827ad80|s1'
-991866206: 3925: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827ada0|s1'
-991866206: 3926: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827adc0|s1'
-991866206: 3927: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275740|s1'
-991866206: 3928: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276e00|s1'
-991866206: 3929: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ade0|s1'
-991866206: 3930: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ae00|s1'
-991866206: 3931: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827ae20|s1'
-991866206: 3932: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827ae40|s1'
-991866206: 3933: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ae60|s1'
-991866206: 3934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ae80|s1'
-991866206: 3935: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827aea0|s1'
-991866206: 3936: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275780|s1'
-991866206: 3937: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276e80|s1'
-991866206: 3938: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827aec0|s1'
-991866206: 3939: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827aee0|s1'
-991866206: 3940: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827af00|s1'
-991866206: 3941: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827af20|s1'
-991866206: 3942: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827af40|s1'
-991866206: 3943: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827af60|s1'
-991866206: 3944: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827af80|s1'
-991866206: 3945: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82757c0|s1'
-991866206: 3946: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276f00|s1'
-991866206: 3947: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827afa0|s1'
-991866206: 3948: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827afc0|s1'
-991866206: 3949: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827afe0|s1'
-991866206: 3950: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c000|s1'
-991866206: 3951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c020|s1'
-991866206: 3952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c040|s1'
-991866206: 3953: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c060|s1'
-991866206: 3954: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275800|s1'
-991866206: 3955: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8276f80|s1'
-991866206: 3956: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c080|s1'
-991866206: 3957: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c0a0|s1'
-991866206: 3958: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c0c0|s1'
-991866206: 3959: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c0e0|s1'
-991866206: 3960: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c100|s1'
-991866206: 3961: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c120|s1'
-991866206: 3962: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827c140|s1'
-991866206: 3963: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827c160|s1'
-991866206: 3964: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827c180|s1'
-991866206: 3965: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827c1a0|s1'
-991866206: 3966: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827c1c0|s1'
-991866206: 3967: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827c1e0|s1'
-991866206: 3968: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827c200|s1'
-991866206: 3969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c220|s1'
-991866206: 3970: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275840|s1'
-991866206: 3971: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e000|s1'
-991866206: 3972: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c240|s1'
-991866206: 3973: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c260|s1'
-991866206: 3974: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c280|s1'
-991866206: 3975: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c2a0|s1'
-991866206: 3976: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c2c0|s1'
-991866206: 3977: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c2e0|s1'
-991866206: 3978: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c300|s1'
-991866206: 3979: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275880|s1'
-991866206: 3980: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e080|s1'
-991866206: 3981: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c320|s1'
-991866206: 3982: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c340|s1'
-991866206: 3983: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c360|s1'
-991866206: 3984: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c380|s1'
-991866206: 3985: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c3a0|s1'
-991866206: 3986: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c3c0|s1'
-991866206: 3987: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c3e0|s1'
-991866206: 3988: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c400|s1'
-991866206: 3989: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827c420|s1'
-991866206: 3990: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827c440|s1'
-991866206: 3991: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827c460|s1'
-991866206: 3992: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827c480|s1'
-991866206: 3993: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827c4a0|s1'
-991866206: 3994: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c4c0|s1'
-991866206: 3995: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82758c0|s1'
-991866206: 3996: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e100|s1'
-991866206: 3997: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c4e0|s1'
-991866206: 3998: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c500|s1'
-991866206: 3999: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c520|s1'
-991866206: 4000: checking heap
-991866206: 4000: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c540|s1'
-991866206: 4001: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c560|s1'
-991866206: 4002: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c580|s1'
-991866206: 4003: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c5a0|s1'
-991866206: 4004: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275900|s1'
-991866206: 4005: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e180|s1'
-991866206: 4006: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c5c0|s1'
-991866206: 4007: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c5e0|s1'
-991866206: 4008: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c600|s1'
-991866206: 4009: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c620|s1'
-991866206: 4010: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c640|s1'
-991866206: 4011: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c660|s1'
-991866206: 4012: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c680|s1'
-991866206: 4013: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c6a0|s1'
-991866206: 4014: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827c6c0|s1'
-991866206: 4015: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827c6e0|s1'
-991866206: 4016: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827c700|s1'
-991866206: 4017: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827c720|s1'
-991866206: 4018: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827c740|s1'
-991866206: 4019: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c760|s1'
-991866206: 4020: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275940|s1'
-991866206: 4021: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e200|s1'
-991866206: 4022: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c780|s1'
-991866206: 4023: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c7a0|s1'
-991866206: 4024: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c7c0|s1'
-991866206: 4025: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c7e0|s1'
-991866206: 4026: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c800|s1'
-991866206: 4027: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c820|s1'
-991866206: 4028: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c840|s1'
-991866206: 4029: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275980|s1'
-991866206: 4030: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e280|s1'
-991866206: 4031: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c860|s1'
-991866206: 4032: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c880|s1'
-991866206: 4033: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c8a0|s1'
-991866206: 4034: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c8c0|s1'
-991866206: 4035: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c8e0|s1'
-991866206: 4036: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c900|s1'
-991866206: 4037: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c920|s1'
-991866206: 4038: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82759c0|s1'
-991866206: 4039: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e300|s1'
-991866206: 4040: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c940|s1'
-991866206: 4041: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c960|s1'
-991866206: 4042: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827c980|s1'
-991866206: 4043: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827c9a0|s1'
-991866206: 4044: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827c9c0|s1'
-991866206: 4045: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827c9e0|s1'
-991866206: 4046: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827ca00|s1'
-991866206: 4047: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827ca20|s1'
-991866206: 4048: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827ca40|s1'
-991866206: 4049: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827ca60|s1'
-991866206: 4050: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827ca80|s1'
-991866206: 4051: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827caa0|s1'
-991866206: 4052: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275a00|s1'
-991866206: 4053: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e380|s1'
-991866206: 4054: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cac0|s1'
-991866206: 4055: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cae0|s1'
-991866206: 4056: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827cb00|s1'
-991866206: 4057: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827cb20|s1'
-991866206: 4058: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cb40|s1'
-991866206: 4059: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cb60|s1'
-991866206: 4060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cb80|s1'
-991866206: 4061: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275a40|s1'
-991866206: 4062: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e400|s1'
-991866206: 4063: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cba0|s1'
-991866206: 4064: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cbc0|s1'
-991866206: 4065: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827cbe0|s1'
-991866206: 4066: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827cc00|s1'
-991866206: 4067: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cc20|s1'
-991866206: 4068: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cc40|s1'
-991866206: 4069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cc60|s1'
-991866206: 4070: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275a80|s1'
-991866206: 4071: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e480|s1'
-991866206: 4072: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cc80|s1'
-991866206: 4073: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cca0|s1'
-991866206: 4074: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827ccc0|s1'
-991866206: 4075: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827cce0|s1'
-991866206: 4076: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cd00|s1'
-991866206: 4077: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cd20|s1'
-991866206: 4078: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827cd40|s1'
-991866206: 4079: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827cd60|s1'
-991866206: 4080: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827cd80|s1'
-991866206: 4081: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x827cda0|s1'
-991866206: 4082: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x827cdc0|s1'
-991866206: 4083: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cde0|s1'
-991866206: 4084: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275ac0|s1'
-991866206: 4085: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e500|s1'
-991866206: 4086: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ce00|s1'
-991866206: 4087: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827ce20|s1'
-991866206: 4088: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827ce40|s1'
-991866206: 4089: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827ce60|s1'
-991866206: 4090: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827ce80|s1'
-991866206: 4091: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cea0|s1'
-991866206: 4092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cec0|s1'
-991866206: 4093: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275b00|s1'
-991866206: 4094: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e580|s1'
-991866206: 4095: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cee0|s1'
-991866206: 4096: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cf00|s1'
-991866206: 4097: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x827cf20|s1'
-991866206: 4098: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x827cf40|s1'
-991866206: 4099: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x827cf60|s1'
-991866206: 4100: checking heap
-991866206: 4100: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x827cf80|s1'
-991866206: 4101: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x827cfa0|s1'
-991866206: 4102: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x827cfc0|s1'
-991866206: 4103: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x827cfe0|s1'
-991866206: 4104: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280000|s1'
-991866206: 4105: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280020|s1'
-991866206: 4106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280040|s1'
-991866206: 4107: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275b40|s1'
-991866206: 4108: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e600|s1'
-991866206: 4109: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280060|s1'
-991866206: 4110: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280080|s1'
-991866206: 4111: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82800a0|s1'
-991866206: 4112: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82800c0|s1'
-991866206: 4113: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82800e0|s1'
-991866206: 4114: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280100|s1'
-991866206: 4115: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280120|s1'
-991866206: 4116: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275b80|s1'
-991866206: 4117: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e680|s1'
-991866206: 4118: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280140|s1'
-991866206: 4119: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280160|s1'
-991866206: 4120: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280180|s1'
-991866206: 4121: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82801a0|s1'
-991866206: 4122: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82801c0|s1'
-991866206: 4123: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82801e0|s1'
-991866206: 4124: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280200|s1'
-991866206: 4125: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280220|s1'
-991866206: 4126: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280240|s1'
-991866206: 4127: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280260|s1'
-991866206: 4128: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280280|s1'
-991866206: 4129: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82802a0|s1'
-991866206: 4130: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275bc0|s1'
-991866206: 4131: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e700|s1'
-991866206: 4132: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82802c0|s1'
-991866206: 4133: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82802e0|s1'
-991866206: 4134: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280300|s1'
-991866206: 4135: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280320|s1'
-991866206: 4136: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280340|s1'
-991866206: 4137: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280360|s1'
-991866206: 4138: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280380|s1'
-991866206: 4139: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82803a0|s1'
-991866206: 4140: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82803c0|s1'
-991866206: 4141: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82803e0|s1'
-991866206: 4142: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280400|s1'
-991866206: 4143: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280420|s1'
-991866206: 4144: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275c00|s1'
-991866206: 4145: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e780|s1'
-991866206: 4146: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280440|s1'
-991866206: 4147: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280460|s1'
-991866206: 4148: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280480|s1'
-991866206: 4149: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82804a0|s1'
-991866206: 4150: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82804c0|s1'
-991866206: 4151: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82804e0|s1'
-991866206: 4152: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280500|s1'
-991866206: 4153: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280520|s1'
-991866206: 4154: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280540|s1'
-991866206: 4155: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280560|s1'
-991866206: 4156: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280580|s1'
-991866206: 4157: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82805a0|s1'
-991866206: 4158: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275c40|s1'
-991866206: 4159: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e800|s1'
-991866206: 4160: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82805c0|s1'
-991866206: 4161: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82805e0|s1'
-991866206: 4162: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280600|s1'
-991866206: 4163: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280620|s1'
-991866206: 4164: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280640|s1'
-991866206: 4165: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280660|s1'
-991866206: 4166: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280680|s1'
-991866206: 4167: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82806a0|s1'
-991866206: 4168: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82806c0|s1'
-991866206: 4169: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82806e0|s1'
-991866206: 4170: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280700|s1'
-991866206: 4171: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280720|s1'
-991866206: 4172: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275c80|s1'
-991866206: 4173: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e880|s1'
-991866206: 4174: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280740|s1'
-991866206: 4175: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280760|s1'
-991866206: 4176: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280780|s1'
-991866206: 4177: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82807a0|s1'
-991866206: 4178: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82807c0|s1'
-991866206: 4179: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82807e0|s1'
-991866206: 4180: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280800|s1'
-991866206: 4181: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280820|s1'
-991866206: 4182: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280840|s1'
-991866206: 4183: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280860|s1'
-991866206: 4184: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280880|s1'
-991866206: 4185: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82808a0|s1'
-991866206: 4186: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275cc0|s1'
-991866206: 4187: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e900|s1'
-991866206: 4188: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82808c0|s1'
-991866206: 4189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82808e0|s1'
-991866206: 4190: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280900|s1'
-991866206: 4191: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280920|s1'
-991866206: 4192: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280940|s1'
-991866206: 4193: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280960|s1'
-991866206: 4194: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280980|s1'
-991866206: 4195: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82809a0|s1'
-991866206: 4196: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82809c0|s1'
-991866206: 4197: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82809e0|s1'
-991866206: 4198: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280a00|s1'
-991866206: 4199: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280a20|s1'
-991866206: 4200: checking heap
-991866206: 4200: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275d00|s1'
-991866206: 4201: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827e980|s1'
-991866206: 4202: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280a40|s1'
-991866206: 4203: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280a60|s1'
-991866206: 4204: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280a80|s1'
-991866206: 4205: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280aa0|s1'
-991866206: 4206: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280ac0|s1'
-991866206: 4207: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280ae0|s1'
-991866206: 4208: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280b00|s1'
-991866206: 4209: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280b20|s1'
-991866206: 4210: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280b40|s1'
-991866206: 4211: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280b60|s1'
-991866206: 4212: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280b80|s1'
-991866206: 4213: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280ba0|s1'
-991866206: 4214: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275d40|s1'
-991866206: 4215: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ea00|s1'
-991866206: 4216: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280bc0|s1'
-991866206: 4217: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280be0|s1'
-991866206: 4218: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280c00|s1'
-991866206: 4219: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280c20|s1'
-991866206: 4220: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280c40|s1'
-991866206: 4221: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280c60|s1'
-991866206: 4222: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280c80|s1'
-991866206: 4223: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280ca0|s1'
-991866206: 4224: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280cc0|s1'
-991866206: 4225: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280ce0|s1'
-991866206: 4226: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280d00|s1'
-991866206: 4227: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280d20|s1'
-991866206: 4228: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275d80|s1'
-991866206: 4229: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ea80|s1'
-991866206: 4230: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280d40|s1'
-991866206: 4231: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280d60|s1'
-991866206: 4232: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280d80|s1'
-991866206: 4233: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280da0|s1'
-991866206: 4234: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280dc0|s1'
-991866206: 4235: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280de0|s1'
-991866206: 4236: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280e00|s1'
-991866206: 4237: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280e20|s1'
-991866206: 4238: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280e40|s1'
-991866206: 4239: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280e60|s1'
-991866206: 4240: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8280e80|s1'
-991866206: 4241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280ea0|s1'
-991866206: 4242: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275dc0|s1'
-991866206: 4243: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827eb00|s1'
-991866206: 4244: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280ec0|s1'
-991866206: 4245: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280ee0|s1'
-991866206: 4246: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8280f00|s1'
-991866206: 4247: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8280f20|s1'
-991866206: 4248: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8280f40|s1'
-991866206: 4249: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8280f60|s1'
-991866206: 4250: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8280f80|s1'
-991866206: 4251: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8280fa0|s1'
-991866206: 4252: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8280fc0|s1'
-991866206: 4253: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8280fe0|s1'
-991866206: 4254: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282000|s1'
-991866206: 4255: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282020|s1'
-991866206: 4256: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275e00|s1'
-991866206: 4257: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827eb80|s1'
-991866206: 4258: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282040|s1'
-991866206: 4259: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282060|s1'
-991866206: 4260: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282080|s1'
-991866206: 4261: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82820a0|s1'
-991866206: 4262: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82820c0|s1'
-991866206: 4263: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82820e0|s1'
-991866206: 4264: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282100|s1'
-991866206: 4265: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8282120|s1'
-991866206: 4266: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282140|s1'
-991866206: 4267: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8282160|s1'
-991866206: 4268: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282180|s1'
-991866206: 4269: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82821a0|s1'
-991866206: 4270: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275e40|s1'
-991866206: 4271: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ec00|s1'
-991866206: 4272: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82821c0|s1'
-991866206: 4273: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82821e0|s1'
-991866206: 4274: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282200|s1'
-991866206: 4275: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282220|s1'
-991866206: 4276: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282240|s1'
-991866206: 4277: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282260|s1'
-991866206: 4278: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282280|s1'
-991866206: 4279: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82822a0|s1'
-991866206: 4280: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82822c0|s1'
-991866206: 4281: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82822e0|s1'
-991866206: 4282: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282300|s1'
-991866206: 4283: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282320|s1'
-991866206: 4284: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275e80|s1'
-991866206: 4285: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ec80|s1'
-991866206: 4286: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282340|s1'
-991866206: 4287: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282360|s1'
-991866206: 4288: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282380|s1'
-991866206: 4289: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82823a0|s1'
-991866206: 4290: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82823c0|s1'
-991866206: 4291: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82823e0|s1'
-991866206: 4292: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282400|s1'
-991866206: 4293: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8282420|s1'
-991866206: 4294: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282440|s1'
-991866206: 4295: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8282460|s1'
-991866206: 4296: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282480|s1'
-991866206: 4297: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82824a0|s1'
-991866206: 4298: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275ec0|s1'
-991866206: 4299: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ed00|s1'
-991866206: 4300: checking heap
-991866206: 4300: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82824c0|s1'
-991866206: 4301: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82824e0|s1'
-991866206: 4302: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282500|s1'
-991866206: 4303: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282520|s1'
-991866206: 4304: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282540|s1'
-991866206: 4305: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282560|s1'
-991866206: 4306: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282580|s1'
-991866206: 4307: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82825a0|s1'
-991866206: 4308: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82825c0|s1'
-991866206: 4309: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82825e0|s1'
-991866206: 4310: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282600|s1'
-991866206: 4311: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282620|s1'
-991866206: 4312: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275f00|s1'
-991866206: 4313: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ed80|s1'
-991866206: 4314: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282640|s1'
-991866206: 4315: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282660|s1'
-991866206: 4316: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282680|s1'
-991866206: 4317: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82826a0|s1'
-991866206: 4318: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82826c0|s1'
-991866206: 4319: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82826e0|s1'
-991866206: 4320: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282700|s1'
-991866206: 4321: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8282720|s1'
-991866206: 4322: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282740|s1'
-991866206: 4323: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8282760|s1'
-991866206: 4324: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282780|s1'
-991866206: 4325: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82827a0|s1'
-991866206: 4326: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275f40|s1'
-991866206: 4327: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ee00|s1'
-991866206: 4328: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82827c0|s1'
-991866206: 4329: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82827e0|s1'
-991866206: 4330: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282800|s1'
-991866206: 4331: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282820|s1'
-991866206: 4332: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282840|s1'
-991866206: 4333: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282860|s1'
-991866206: 4334: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282880|s1'
-991866206: 4335: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82828a0|s1'
-991866206: 4336: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82828c0|s1'
-991866206: 4337: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82828e0|s1'
-991866206: 4338: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282900|s1'
-991866206: 4339: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282920|s1'
-991866206: 4340: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275f80|s1'
-991866206: 4341: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ee80|s1'
-991866206: 4342: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282940|s1'
-991866206: 4343: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282960|s1'
-991866206: 4344: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282980|s1'
-991866206: 4345: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82829a0|s1'
-991866206: 4346: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82829c0|s1'
-991866206: 4347: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82829e0|s1'
-991866206: 4348: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282a00|s1'
-991866206: 4349: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8282a20|s1'
-991866206: 4350: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282a40|s1'
-991866206: 4351: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8282a60|s1'
-991866206: 4352: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282a80|s1'
-991866206: 4353: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282aa0|s1'
-991866206: 4354: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8275fc0|s1'
-991866206: 4355: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ef00|s1'
-991866206: 4356: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282ac0|s1'
-991866206: 4357: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282ae0|s1'
-991866206: 4358: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282b00|s1'
-991866206: 4359: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282b20|s1'
-991866206: 4360: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282b40|s1'
-991866206: 4361: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282b60|s1'
-991866206: 4362: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282b80|s1'
-991866206: 4363: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8282ba0|s1'
-991866206: 4364: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282bc0|s1'
-991866206: 4365: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8282be0|s1'
-991866206: 4366: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282c00|s1'
-991866206: 4367: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282c20|s1'
-991866206: 4368: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284000|s1'
-991866206: 4369: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x827ef80|s1'
-991866206: 4370: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282c40|s1'
-991866206: 4371: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282c60|s1'
-991866206: 4372: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282c80|s1'
-991866206: 4373: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282ca0|s1'
-991866206: 4374: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282cc0|s1'
-991866206: 4375: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282ce0|s1'
-991866206: 4376: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282d00|s1'
-991866206: 4377: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8282d20|s1'
-991866206: 4378: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282d40|s1'
-991866206: 4379: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282d60|s1'
-991866206: 4380: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282d80|s1'
-991866206: 4381: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8282da0|s1'
-991866206: 4382: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8282dc0|s1'
-991866206: 4383: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8282de0|s1'
-991866206: 4384: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8282e00|s1'
-991866206: 4385: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282e20|s1'
-991866206: 4386: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284040|s1'
-991866206: 4387: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285000|s1'
-991866206: 4388: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282e40|s1'
-991866206: 4389: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282e60|s1'
-991866206: 4390: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282e80|s1'
-991866206: 4391: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282ea0|s1'
-991866206: 4392: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282ec0|s1'
-991866206: 4393: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282ee0|s1'
-991866206: 4394: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282f00|s1'
-991866206: 4395: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284080|s1'
-991866206: 4396: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285080|s1'
-991866206: 4397: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282f20|s1'
-991866206: 4398: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282f40|s1'
-991866206: 4399: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8282f60|s1'
-991866206: 4400: checking heap
-991866206: 4400: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8282f80|s1'
-991866206: 4401: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282fa0|s1'
-991866206: 4402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8282fc0|s1'
-991866206: 4403: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8282fe0|s1'
-991866206: 4404: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287000|s1'
-991866206: 4405: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8287020|s1'
-991866206: 4406: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8287040|s1'
-991866206: 4407: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8287060|s1'
-991866206: 4408: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8287080|s1'
-991866206: 4409: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82870a0|s1'
-991866206: 4410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82870c0|s1'
-991866206: 4411: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82840c0|s1'
-991866206: 4412: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285100|s1'
-991866206: 4413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82870e0|s1'
-991866206: 4414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287100|s1'
-991866206: 4415: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287120|s1'
-991866206: 4416: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287140|s1'
-991866206: 4417: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287160|s1'
-991866206: 4418: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287180|s1'
-991866206: 4419: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82871a0|s1'
-991866206: 4420: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284100|s1'
-991866206: 4421: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285180|s1'
-991866206: 4422: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82871c0|s1'
-991866206: 4423: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82871e0|s1'
-991866206: 4424: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287200|s1'
-991866206: 4425: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287220|s1'
-991866206: 4426: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287240|s1'
-991866206: 4427: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287260|s1'
-991866206: 4428: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287280|s1'
-991866206: 4429: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82872a0|s1'
-991866206: 4430: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82872c0|s1'
-991866206: 4431: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82872e0|s1'
-991866206: 4432: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8287300|s1'
-991866206: 4433: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8287320|s1'
-991866206: 4434: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8287340|s1'
-991866206: 4435: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287360|s1'
-991866206: 4436: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284140|s1'
-991866206: 4437: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285200|s1'
-991866206: 4438: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287380|s1'
-991866206: 4439: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82873a0|s1'
-991866206: 4440: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82873c0|s1'
-991866206: 4441: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82873e0|s1'
-991866206: 4442: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287400|s1'
-991866206: 4443: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287420|s1'
-991866206: 4444: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287440|s1'
-991866206: 4445: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284180|s1'
-991866206: 4446: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285280|s1'
-991866206: 4447: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287460|s1'
-991866206: 4448: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287480|s1'
-991866206: 4449: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82874a0|s1'
-991866206: 4450: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82874c0|s1'
-991866206: 4451: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82874e0|s1'
-991866206: 4452: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287500|s1'
-991866206: 4453: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287520|s1'
-991866206: 4454: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287540|s1'
-991866206: 4455: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287560|s1'
-991866206: 4456: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82841c0|s1'
-991866206: 4457: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285300|s1'
-991866206: 4458: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287580|s1'
-991866206: 4459: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82875a0|s1'
-991866206: 4460: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82875c0|s1'
-991866206: 4461: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82875e0|s1'
-991866206: 4462: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287600|s1'
-991866206: 4463: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287620|s1'
-991866206: 4464: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8287640|s1'
-991866206: 4465: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8287660|s1'
-991866206: 4466: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8287680|s1'
-991866206: 4467: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82876a0|s1'
-991866206: 4468: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82876c0|s1'
-991866206: 4469: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82876e0|s1'
-991866206: 4470: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284200|s1'
-991866206: 4471: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285380|s1'
-991866206: 4472: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287700|s1'
-991866206: 4473: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287720|s1'
-991866206: 4474: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287740|s1'
-991866206: 4475: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287760|s1'
-991866206: 4476: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287780|s1'
-991866206: 4477: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82877a0|s1'
-991866206: 4478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82877c0|s1'
-991866206: 4479: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284240|s1'
-991866206: 4480: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285400|s1'
-991866206: 4481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82877e0|s1'
-991866206: 4482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287800|s1'
-991866206: 4483: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287820|s1'
-991866206: 4484: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287840|s1'
-991866206: 4485: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287860|s1'
-991866206: 4486: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287880|s1'
-991866206: 4487: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82878a0|s1'
-991866206: 4488: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82878c0|s1'
-991866206: 4489: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82878e0|s1'
-991866206: 4490: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284280|s1'
-991866206: 4491: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285480|s1'
-991866206: 4492: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287900|s1'
-991866206: 4493: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287920|s1'
-991866206: 4494: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287940|s1'
-991866206: 4495: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287960|s1'
-991866206: 4496: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287980|s1'
-991866206: 4497: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82879a0|s1'
-991866206: 4498: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82879c0|s1'
-991866206: 4499: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82879e0|s1'
-991866206: 4500: checking heap
-991866206: 4500: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8287a00|s1'
-991866206: 4501: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8287a20|s1'
-991866206: 4502: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8287a40|s1'
-991866206: 4503: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287a60|s1'
-991866206: 4504: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82842c0|s1'
-991866206: 4505: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285500|s1'
-991866206: 4506: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287a80|s1'
-991866206: 4507: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287aa0|s1'
-991866206: 4508: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287ac0|s1'
-991866206: 4509: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287ae0|s1'
-991866206: 4510: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287b00|s1'
-991866206: 4511: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287b20|s1'
-991866206: 4512: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287b40|s1'
-991866206: 4513: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284300|s1'
-991866206: 4514: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285580|s1'
-991866206: 4515: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287b60|s1'
-991866206: 4516: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287b80|s1'
-991866206: 4517: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287ba0|s1'
-991866206: 4518: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287bc0|s1'
-991866206: 4519: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287be0|s1'
-991866206: 4520: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287c00|s1'
-991866206: 4521: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287c20|s1'
-991866206: 4522: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287c40|s1'
-991866206: 4523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287c60|s1'
-991866206: 4524: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284340|s1'
-991866206: 4525: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285600|s1'
-991866206: 4526: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287c80|s1'
-991866206: 4527: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287ca0|s1'
-991866206: 4528: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287cc0|s1'
-991866206: 4529: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287ce0|s1'
-991866206: 4530: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287d00|s1'
-991866206: 4531: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287d20|s1'
-991866206: 4532: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8287d40|s1'
-991866206: 4533: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8287d60|s1'
-991866206: 4534: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8287d80|s1'
-991866206: 4535: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8287da0|s1'
-991866206: 4536: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8287dc0|s1'
-991866206: 4537: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287de0|s1'
-991866206: 4538: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284380|s1'
-991866206: 4539: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285680|s1'
-991866206: 4540: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287e00|s1'
-991866206: 4541: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287e20|s1'
-991866206: 4542: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287e40|s1'
-991866206: 4543: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287e60|s1'
-991866206: 4544: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287e80|s1'
-991866206: 4545: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287ea0|s1'
-991866206: 4546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287ec0|s1'
-991866206: 4547: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82843c0|s1'
-991866206: 4548: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285700|s1'
-991866206: 4549: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287ee0|s1'
-991866206: 4550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287f00|s1'
-991866206: 4551: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8287f20|s1'
-991866206: 4552: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8287f40|s1'
-991866206: 4553: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287f60|s1'
-991866206: 4554: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287f80|s1'
-991866206: 4555: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8287fa0|s1'
-991866206: 4556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287fc0|s1'
-991866206: 4557: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8287fe0|s1'
-991866206: 4558: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284400|s1'
-991866206: 4559: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285780|s1'
-991866206: 4560: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289000|s1'
-991866206: 4561: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289020|s1'
-991866206: 4562: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289040|s1'
-991866206: 4563: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289060|s1'
-991866206: 4564: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289080|s1'
-991866206: 4565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82890a0|s1'
-991866206: 4566: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82890c0|s1'
-991866206: 4567: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82890e0|s1'
-991866206: 4568: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289100|s1'
-991866206: 4569: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289120|s1'
-991866206: 4570: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289140|s1'
-991866206: 4571: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289160|s1'
-991866206: 4572: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289180|s1'
-991866206: 4573: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82891a0|s1'
-991866206: 4574: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82891c0|s1'
-991866206: 4575: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82891e0|s1'
-991866206: 4576: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289200|s1'
-991866206: 4577: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289220|s1'
-991866206: 4578: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289240|s1'
-991866206: 4579: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289260|s1'
-991866206: 4580: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289280|s1'
-991866206: 4581: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82892a0|s1'
-991866206: 4582: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284440|s1'
-991866206: 4583: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285800|s1'
-991866206: 4584: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82892c0|s1'
-991866206: 4585: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82892e0|s1'
-991866206: 4586: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289300|s1'
-991866206: 4587: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289320|s1'
-991866206: 4588: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289340|s1'
-991866206: 4589: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289360|s1'
-991866206: 4590: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289380|s1'
-991866206: 4591: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82893a0|s1'
-991866206: 4592: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82893c0|s1'
-991866206: 4593: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82893e0|s1'
-991866206: 4594: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289400|s1'
-991866206: 4595: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289420|s1'
-991866206: 4596: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284480|s1'
-991866206: 4597: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285880|s1'
-991866206: 4598: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289440|s1'
-991866206: 4599: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289460|s1'
-991866206: 4600: checking heap
-991866206: 4600: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289480|s1'
-991866206: 4601: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82894a0|s1'
-991866206: 4602: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82894c0|s1'
-991866206: 4603: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82894e0|s1'
-991866206: 4604: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289500|s1'
-991866206: 4605: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289520|s1'
-991866206: 4606: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289540|s1'
-991866206: 4607: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289560|s1'
-991866206: 4608: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289580|s1'
-991866206: 4609: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82895a0|s1'
-991866206: 4610: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82844c0|s1'
-991866206: 4611: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285900|s1'
-991866206: 4612: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82895c0|s1'
-991866206: 4613: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82895e0|s1'
-991866206: 4614: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289600|s1'
-991866206: 4615: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289620|s1'
-991866206: 4616: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289640|s1'
-991866206: 4617: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289660|s1'
-991866206: 4618: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289680|s1'
-991866206: 4619: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284500|s1'
-991866206: 4620: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285980|s1'
-991866206: 4621: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82896a0|s1'
-991866206: 4622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82896c0|s1'
-991866206: 4623: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82896e0|s1'
-991866206: 4624: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289700|s1'
-991866206: 4625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289720|s1'
-991866206: 4626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289740|s1'
-991866206: 4627: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289760|s1'
-991866206: 4628: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289780|s1'
-991866206: 4629: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82897a0|s1'
-991866206: 4630: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82897c0|s1'
-991866206: 4631: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82897e0|s1'
-991866206: 4632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289800|s1'
-991866206: 4633: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284540|s1'
-991866206: 4634: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285a00|s1'
-991866206: 4635: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289820|s1'
-991866206: 4636: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289840|s1'
-991866206: 4637: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289860|s1'
-991866206: 4638: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289880|s1'
-991866206: 4639: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82898a0|s1'
-991866206: 4640: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82898c0|s1'
-991866206: 4641: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82898e0|s1'
-991866206: 4642: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284580|s1'
-991866206: 4643: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285a80|s1'
-991866206: 4644: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289900|s1'
-991866206: 4645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289920|s1'
-991866206: 4646: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289940|s1'
-991866206: 4647: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289960|s1'
-991866206: 4648: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289980|s1'
-991866206: 4649: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82899a0|s1'
-991866206: 4650: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82899c0|s1'
-991866206: 4651: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82899e0|s1'
-991866206: 4652: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289a00|s1'
-991866206: 4653: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289a20|s1'
-991866206: 4654: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289a40|s1'
-991866206: 4655: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289a60|s1'
-991866206: 4656: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82845c0|s1'
-991866206: 4657: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285b00|s1'
-991866206: 4658: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289a80|s1'
-991866206: 4659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289aa0|s1'
-991866206: 4660: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289ac0|s1'
-991866206: 4661: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289ae0|s1'
-991866206: 4662: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289b00|s1'
-991866206: 4663: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289b20|s1'
-991866206: 4664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289b40|s1'
-991866206: 4665: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284600|s1'
-991866206: 4666: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285b80|s1'
-991866206: 4667: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289b60|s1'
-991866206: 4668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289b80|s1'
-991866206: 4669: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289ba0|s1'
-991866206: 4670: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289bc0|s1'
-991866206: 4671: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289be0|s1'
-991866206: 4672: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289c00|s1'
-991866206: 4673: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289c20|s1'
-991866206: 4674: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289c40|s1'
-991866206: 4675: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289c60|s1'
-991866206: 4676: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289c80|s1'
-991866206: 4677: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289ca0|s1'
-991866206: 4678: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289cc0|s1'
-991866206: 4679: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284640|s1'
-991866206: 4680: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285c00|s1'
-991866206: 4681: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289ce0|s1'
-991866206: 4682: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289d00|s1'
-991866206: 4683: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289d20|s1'
-991866206: 4684: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289d40|s1'
-991866206: 4685: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289d60|s1'
-991866206: 4686: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289d80|s1'
-991866206: 4687: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289da0|s1'
-991866206: 4688: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289dc0|s1'
-991866206: 4689: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289de0|s1'
-991866206: 4690: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289e00|s1'
-991866206: 4691: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289e20|s1'
-991866206: 4692: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289e40|s1'
-991866206: 4693: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284680|s1'
-991866206: 4694: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285c80|s1'
-991866206: 4695: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289e60|s1'
-991866206: 4696: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289e80|s1'
-991866206: 4697: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8289ea0|s1'
-991866206: 4698: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8289ec0|s1'
-991866206: 4699: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289ee0|s1'
-991866206: 4700: checking heap
-991866206: 4700: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289f00|s1'
-991866206: 4701: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8289f20|s1'
-991866206: 4702: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8289f40|s1'
-991866206: 4703: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8289f60|s1'
-991866206: 4704: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8289f80|s1'
-991866206: 4705: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8289fa0|s1'
-991866206: 4706: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8289fc0|s1'
-991866206: 4707: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82846c0|s1'
-991866206: 4708: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285d00|s1'
-991866206: 4709: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8289fe0|s1'
-991866206: 4710: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b000|s1'
-991866206: 4711: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b020|s1'
-991866206: 4712: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b040|s1'
-991866206: 4713: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b060|s1'
-991866206: 4714: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b080|s1'
-991866206: 4715: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828b0a0|s1'
-991866206: 4716: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828b0c0|s1'
-991866206: 4717: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828b0e0|s1'
-991866206: 4718: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828b100|s1'
-991866206: 4719: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828b120|s1'
-991866206: 4720: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b140|s1'
-991866206: 4721: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284700|s1'
-991866206: 4722: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285d80|s1'
-991866206: 4723: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b160|s1'
-991866206: 4724: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b180|s1'
-991866206: 4725: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b1a0|s1'
-991866206: 4726: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b1c0|s1'
-991866206: 4727: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b1e0|s1'
-991866206: 4728: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b200|s1'
-991866206: 4729: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b220|s1'
-991866206: 4730: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b240|s1'
-991866206: 4731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b260|s1'
-991866206: 4732: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284740|s1'
-991866206: 4733: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285e00|s1'
-991866206: 4734: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b280|s1'
-991866206: 4735: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b2a0|s1'
-991866206: 4736: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b2c0|s1'
-991866206: 4737: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b2e0|s1'
-991866206: 4738: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b300|s1'
-991866206: 4739: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b320|s1'
-991866206: 4740: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828b340|s1'
-991866206: 4741: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828b360|s1'
-991866206: 4742: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828b380|s1'
-991866206: 4743: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828b3a0|s1'
-991866206: 4744: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828b3c0|s1'
-991866206: 4745: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b3e0|s1'
-991866206: 4746: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284780|s1'
-991866206: 4747: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285e80|s1'
-991866206: 4748: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b400|s1'
-991866206: 4749: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b420|s1'
-991866206: 4750: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b440|s1'
-991866206: 4751: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b460|s1'
-991866206: 4752: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b480|s1'
-991866206: 4753: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b4a0|s1'
-991866206: 4754: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b4c0|s1'
-991866206: 4755: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b4e0|s1'
-991866206: 4756: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b500|s1'
-991866206: 4757: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82847c0|s1'
-991866206: 4758: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285f00|s1'
-991866206: 4759: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b520|s1'
-991866206: 4760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b540|s1'
-991866206: 4761: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b560|s1'
-991866206: 4762: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b580|s1'
-991866206: 4763: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b5a0|s1'
-991866206: 4764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b5c0|s1'
-991866206: 4765: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828b5e0|s1'
-991866206: 4766: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828b600|s1'
-991866206: 4767: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828b620|s1'
-991866206: 4768: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828b640|s1'
-991866206: 4769: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828b660|s1'
-991866206: 4770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b680|s1'
-991866206: 4771: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284800|s1'
-991866206: 4772: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8285f80|s1'
-991866206: 4773: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b6a0|s1'
-991866206: 4774: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b6c0|s1'
-991866206: 4775: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b6e0|s1'
-991866206: 4776: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b700|s1'
-991866206: 4777: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b720|s1'
-991866206: 4778: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b740|s1'
-991866206: 4779: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b760|s1'
-991866206: 4780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b780|s1'
-991866206: 4781: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b7a0|s1'
-991866206: 4782: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284840|s1'
-991866206: 4783: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d000|s1'
-991866206: 4784: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b7c0|s1'
-991866206: 4785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b7e0|s1'
-991866206: 4786: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b800|s1'
-991866206: 4787: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b820|s1'
-991866206: 4788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b840|s1'
-991866206: 4789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b860|s1'
-991866206: 4790: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828b880|s1'
-991866206: 4791: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828b8a0|s1'
-991866206: 4792: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828b8c0|s1'
-991866206: 4793: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828b8e0|s1'
-991866206: 4794: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828b900|s1'
-991866206: 4795: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b920|s1'
-991866206: 4796: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284880|s1'
-991866206: 4797: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d080|s1'
-991866206: 4798: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b940|s1'
-991866206: 4799: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b960|s1'
-991866206: 4800: checking heap
-991866206: 4800: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828b980|s1'
-991866206: 4801: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828b9a0|s1'
-991866206: 4802: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828b9c0|s1'
-991866206: 4803: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828b9e0|s1'
-991866206: 4804: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828ba00|s1'
-991866206: 4805: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828ba20|s1'
-991866206: 4806: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828ba40|s1'
-991866206: 4807: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828ba60|s1'
-991866206: 4808: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828ba80|s1'
-991866206: 4809: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828baa0|s1'
-991866206: 4810: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828bac0|s1'
-991866206: 4811: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bae0|s1'
-991866206: 4812: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82848c0|s1'
-991866206: 4813: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d100|s1'
-991866206: 4814: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828bb00|s1'
-991866206: 4815: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bb20|s1'
-991866206: 4816: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828bb40|s1'
-991866206: 4817: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828bb60|s1'
-991866206: 4818: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828bb80|s1'
-991866206: 4819: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bba0|s1'
-991866206: 4820: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828bbc0|s1'
-991866206: 4821: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bbe0|s1'
-991866206: 4822: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828bc00|s1'
-991866206: 4823: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828bc20|s1'
-991866206: 4824: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828bc40|s1'
-991866206: 4825: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828bc60|s1'
-991866206: 4826: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828bc80|s1'
-991866206: 4827: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828bca0|s1'
-991866206: 4828: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828bcc0|s1'
-991866206: 4829: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828bce0|s1'
-991866206: 4830: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828bd00|s1'
-991866206: 4831: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828bd20|s1'
-991866206: 4832: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828bd40|s1'
-991866206: 4833: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828bd60|s1'
-991866206: 4834: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828bd80|s1'
-991866206: 4835: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828bda0|s1'
-991866206: 4836: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828bdc0|s1'
-991866206: 4837: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bde0|s1'
-991866206: 4838: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284900|s1'
-991866206: 4839: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d180|s1'
-991866206: 4840: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828be00|s1'
-991866206: 4841: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828be20|s1'
-991866206: 4842: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828be40|s1'
-991866206: 4843: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828be60|s1'
-991866206: 4844: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828be80|s1'
-991866206: 4845: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bea0|s1'
-991866206: 4846: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828bec0|s1'
-991866206: 4847: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828bee0|s1'
-991866206: 4848: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828bf00|s1'
-991866206: 4849: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828bf20|s1'
-991866206: 4850: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828bf40|s1'
-991866206: 4851: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bf60|s1'
-991866206: 4852: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284940|s1'
-991866206: 4853: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d200|s1'
-991866206: 4854: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828bf80|s1'
-991866206: 4855: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828bfa0|s1'
-991866206: 4856: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828bfc0|s1'
-991866206: 4857: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828bfe0|s1'
-991866206: 4858: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f000|s1'
-991866206: 4859: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f020|s1'
-991866206: 4860: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f040|s1'
-991866206: 4861: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f060|s1'
-991866206: 4862: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f080|s1'
-991866206: 4863: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f0a0|s1'
-991866206: 4864: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f0c0|s1'
-991866206: 4865: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f0e0|s1'
-991866206: 4866: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f100|s1'
-991866206: 4867: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f120|s1'
-991866206: 4868: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f140|s1'
-991866206: 4869: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f160|s1'
-991866206: 4870: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f180|s1'
-991866206: 4871: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f1a0|s1'
-991866206: 4872: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f1c0|s1'
-991866206: 4873: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f1e0|s1'
-991866206: 4874: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f200|s1'
-991866206: 4875: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f220|s1'
-991866206: 4876: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f240|s1'
-991866206: 4877: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f260|s1'
-991866206: 4878: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f280|s1'
-991866206: 4879: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284980|s1'
-991866206: 4880: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d280|s1'
-991866206: 4881: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f2a0|s1'
-991866206: 4882: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f2c0|s1'
-991866206: 4883: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828f2e0|s1'
-991866206: 4884: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828f300|s1'
-991866206: 4885: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f320|s1'
-991866206: 4886: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f340|s1'
-991866206: 4887: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f360|s1'
-991866206: 4888: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f380|s1'
-991866206: 4889: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f3a0|s1'
-991866206: 4890: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f3c0|s1'
-991866206: 4891: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f3e0|s1'
-991866206: 4892: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f400|s1'
-991866206: 4893: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82849c0|s1'
-991866206: 4894: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d300|s1'
-991866206: 4895: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f420|s1'
-991866206: 4896: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f440|s1'
-991866206: 4897: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828f460|s1'
-991866206: 4898: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828f480|s1'
-991866206: 4899: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f4a0|s1'
-991866206: 4900: checking heap
-991866206: 4900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f4c0|s1'
-991866206: 4901: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f4e0|s1'
-991866206: 4902: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f500|s1'
-991866206: 4903: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f520|s1'
-991866206: 4904: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f540|s1'
-991866206: 4905: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f560|s1'
-991866206: 4906: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f580|s1'
-991866206: 4907: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284a00|s1'
-991866206: 4908: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d380|s1'
-991866206: 4909: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f5a0|s1'
-991866206: 4910: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f5c0|s1'
-991866206: 4911: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828f5e0|s1'
-991866206: 4912: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828f600|s1'
-991866206: 4913: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f620|s1'
-991866206: 4914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f640|s1'
-991866206: 4915: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f660|s1'
-991866206: 4916: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f680|s1'
-991866206: 4917: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f6a0|s1'
-991866206: 4918: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f6c0|s1'
-991866206: 4919: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f6e0|s1'
-991866206: 4920: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f700|s1'
-991866206: 4921: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284a40|s1'
-991866206: 4922: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d400|s1'
-991866206: 4923: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f720|s1'
-991866206: 4924: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f740|s1'
-991866206: 4925: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828f760|s1'
-991866206: 4926: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828f780|s1'
-991866206: 4927: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f7a0|s1'
-991866206: 4928: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f7c0|s1'
-991866206: 4929: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f7e0|s1'
-991866206: 4930: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f800|s1'
-991866206: 4931: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f820|s1'
-991866206: 4932: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f840|s1'
-991866206: 4933: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f860|s1'
-991866206: 4934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f880|s1'
-991866206: 4935: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284a80|s1'
-991866206: 4936: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d480|s1'
-991866206: 4937: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f8a0|s1'
-991866206: 4938: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f8c0|s1'
-991866206: 4939: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828f8e0|s1'
-991866206: 4940: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828f900|s1'
-991866206: 4941: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828f920|s1'
-991866206: 4942: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828f940|s1'
-991866206: 4943: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828f960|s1'
-991866206: 4944: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828f980|s1'
-991866206: 4945: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828f9a0|s1'
-991866206: 4946: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828f9c0|s1'
-991866206: 4947: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828f9e0|s1'
-991866206: 4948: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fa00|s1'
-991866206: 4949: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284ac0|s1'
-991866206: 4950: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d500|s1'
-991866206: 4951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fa20|s1'
-991866206: 4952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fa40|s1'
-991866206: 4953: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828fa60|s1'
-991866206: 4954: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828fa80|s1'
-991866206: 4955: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828faa0|s1'
-991866206: 4956: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fac0|s1'
-991866206: 4957: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828fae0|s1'
-991866206: 4958: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828fb00|s1'
-991866206: 4959: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828fb20|s1'
-991866206: 4960: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828fb40|s1'
-991866206: 4961: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828fb60|s1'
-991866206: 4962: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fb80|s1'
-991866206: 4963: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284b00|s1'
-991866206: 4964: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d580|s1'
-991866206: 4965: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fba0|s1'
-991866206: 4966: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fbc0|s1'
-991866206: 4967: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828fbe0|s1'
-991866206: 4968: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828fc00|s1'
-991866206: 4969: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fc20|s1'
-991866206: 4970: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fc40|s1'
-991866206: 4971: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828fc60|s1'
-991866206: 4972: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828fc80|s1'
-991866206: 4973: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828fca0|s1'
-991866206: 4974: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828fcc0|s1'
-991866206: 4975: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828fce0|s1'
-991866206: 4976: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828fd00|s1'
-991866206: 4977: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fd20|s1'
-991866206: 4978: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284b40|s1'
-991866206: 4979: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d600|s1'
-991866206: 4980: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fd40|s1'
-991866206: 4981: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fd60|s1'
-991866206: 4982: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828fd80|s1'
-991866206: 4983: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828fda0|s1'
-991866206: 4984: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fdc0|s1'
-991866206: 4985: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fde0|s1'
-991866206: 4986: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fe00|s1'
-991866206: 4987: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284b80|s1'
-991866206: 4988: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d680|s1'
-991866206: 4989: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fe20|s1'
-991866206: 4990: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fe40|s1'
-991866206: 4991: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828fe60|s1'
-991866206: 4992: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x828fe80|s1'
-991866206: 4993: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828fea0|s1'
-991866206: 4994: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828fec0|s1'
-991866206: 4995: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x828fee0|s1'
-991866206: 4996: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x828ff00|s1'
-991866206: 4997: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x828ff20|s1'
-991866206: 4998: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x828ff40|s1'
-991866206: 4999: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x828ff60|s1'
-991866206: 5000: checking heap
-991866206: 5000: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828ff80|s1'
-991866206: 5001: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284bc0|s1'
-991866206: 5002: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d700|s1'
-991866206: 5003: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x828ffa0|s1'
-991866206: 5004: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x828ffc0|s1'
-991866206: 5005: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x828ffe0|s1'
-991866206: 5006: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291000|s1'
-991866206: 5007: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291020|s1'
-991866206: 5008: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291040|s1'
-991866206: 5009: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291060|s1'
-991866206: 5010: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284c00|s1'
-991866206: 5011: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d780|s1'
-991866206: 5012: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291080|s1'
-991866206: 5013: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82910a0|s1'
-991866206: 5014: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82910c0|s1'
-991866206: 5015: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82910e0|s1'
-991866206: 5016: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291100|s1'
-991866206: 5017: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291120|s1'
-991866206: 5018: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8291140|s1'
-991866206: 5019: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8291160|s1'
-991866206: 5020: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8291180|s1'
-991866206: 5021: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82911a0|s1'
-991866206: 5022: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82911c0|s1'
-991866206: 5023: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82911e0|s1'
-991866206: 5024: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8291200|s1'
-991866206: 5025: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291220|s1'
-991866206: 5026: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284c40|s1'
-991866206: 5027: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d800|s1'
-991866206: 5028: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291240|s1'
-991866206: 5029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291260|s1'
-991866206: 5030: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291280|s1'
-991866206: 5031: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82912a0|s1'
-991866206: 5032: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82912c0|s1'
-991866206: 5033: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82912e0|s1'
-991866206: 5034: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291300|s1'
-991866206: 5035: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284c80|s1'
-991866206: 5036: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d880|s1'
-991866206: 5037: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291320|s1'
-991866206: 5038: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291340|s1'
-991866206: 5039: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291360|s1'
-991866206: 5040: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291380|s1'
-991866206: 5041: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82913a0|s1'
-991866206: 5042: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82913c0|s1'
-991866206: 5043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82913e0|s1'
-991866206: 5044: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284cc0|s1'
-991866206: 5045: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d900|s1'
-991866206: 5046: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291400|s1'
-991866206: 5047: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291420|s1'
-991866206: 5048: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291440|s1'
-991866206: 5049: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291460|s1'
-991866206: 5050: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291480|s1'
-991866206: 5051: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82914a0|s1'
-991866206: 5052: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82914c0|s1'
-991866206: 5053: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284d00|s1'
-991866206: 5054: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828d980|s1'
-991866206: 5055: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82914e0|s1'
-991866206: 5056: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291500|s1'
-991866206: 5057: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291520|s1'
-991866206: 5058: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291540|s1'
-991866206: 5059: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291560|s1'
-991866206: 5060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291580|s1'
-991866206: 5061: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82915a0|s1'
-991866206: 5062: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284d40|s1'
-991866206: 5063: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828da00|s1'
-991866206: 5064: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82915c0|s1'
-991866206: 5065: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82915e0|s1'
-991866206: 5066: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291600|s1'
-991866206: 5067: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291620|s1'
-991866206: 5068: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291640|s1'
-991866206: 5069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291660|s1'
-991866206: 5070: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8291680|s1'
-991866206: 5071: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82916a0|s1'
-991866206: 5072: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82916c0|s1'
-991866206: 5073: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82916e0|s1'
-991866206: 5074: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8291700|s1'
-991866206: 5075: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291720|s1'
-991866206: 5076: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284d80|s1'
-991866206: 5077: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828da80|s1'
-991866206: 5078: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291740|s1'
-991866206: 5079: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291760|s1'
-991866206: 5080: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291780|s1'
-991866206: 5081: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82917a0|s1'
-991866206: 5082: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82917c0|s1'
-991866206: 5083: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82917e0|s1'
-991866206: 5084: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291800|s1'
-991866206: 5085: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284dc0|s1'
-991866206: 5086: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828db00|s1'
-991866206: 5087: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291820|s1'
-991866206: 5088: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291840|s1'
-991866206: 5089: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291860|s1'
-991866206: 5090: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291880|s1'
-991866206: 5091: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82918a0|s1'
-991866206: 5092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82918c0|s1'
-991866206: 5093: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82918e0|s1'
-991866206: 5094: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284e00|s1'
-991866206: 5095: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828db80|s1'
-991866206: 5096: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291900|s1'
-991866206: 5097: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291920|s1'
-991866206: 5098: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291940|s1'
-991866206: 5099: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291960|s1'
-991866206: 5100: checking heap
-991866206: 5100: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291980|s1'
-991866206: 5101: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82919a0|s1'
-991866206: 5102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82919c0|s1'
-991866206: 5103: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284e40|s1'
-991866206: 5104: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828dc00|s1'
-991866206: 5105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82919e0|s1'
-991866206: 5106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291a00|s1'
-991866206: 5107: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291a20|s1'
-991866206: 5108: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291a40|s1'
-991866206: 5109: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291a60|s1'
-991866206: 5110: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291a80|s1'
-991866206: 5111: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291aa0|s1'
-991866206: 5112: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284e80|s1'
-991866206: 5113: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828dc80|s1'
-991866206: 5114: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291ac0|s1'
-991866206: 5115: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291ae0|s1'
-991866206: 5116: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291b00|s1'
-991866206: 5117: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291b20|s1'
-991866206: 5118: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291b40|s1'
-991866206: 5119: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291b60|s1'
-991866206: 5120: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8291b80|s1'
-991866206: 5121: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8291ba0|s1'
-991866206: 5122: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8291bc0|s1'
-991866206: 5123: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8291be0|s1'
-991866206: 5124: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8291c00|s1'
-991866206: 5125: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291c20|s1'
-991866206: 5126: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284ec0|s1'
-991866206: 5127: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828dd00|s1'
-991866206: 5128: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291c40|s1'
-991866206: 5129: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291c60|s1'
-991866206: 5130: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291c80|s1'
-991866206: 5131: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291ca0|s1'
-991866206: 5132: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291cc0|s1'
-991866206: 5133: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291ce0|s1'
-991866206: 5134: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291d00|s1'
-991866206: 5135: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284f00|s1'
-991866206: 5136: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828dd80|s1'
-991866206: 5137: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291d20|s1'
-991866206: 5138: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291d40|s1'
-991866206: 5139: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291d60|s1'
-991866206: 5140: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291d80|s1'
-991866206: 5141: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291da0|s1'
-991866206: 5142: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291dc0|s1'
-991866206: 5143: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291de0|s1'
-991866206: 5144: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284f40|s1'
-991866206: 5145: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828de00|s1'
-991866206: 5146: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291e00|s1'
-991866206: 5147: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291e20|s1'
-991866206: 5148: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291e40|s1'
-991866206: 5149: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291e60|s1'
-991866206: 5150: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291e80|s1'
-991866206: 5151: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291ea0|s1'
-991866206: 5152: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291ec0|s1'
-991866206: 5153: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284f80|s1'
-991866206: 5154: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828de80|s1'
-991866206: 5155: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291ee0|s1'
-991866206: 5156: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291f00|s1'
-991866206: 5157: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8291f20|s1'
-991866206: 5158: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8291f40|s1'
-991866206: 5159: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291f60|s1'
-991866206: 5160: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291f80|s1'
-991866206: 5161: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291fa0|s1'
-991866206: 5162: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8284fc0|s1'
-991866206: 5163: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828df00|s1'
-991866206: 5164: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8291fc0|s1'
-991866206: 5165: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8291fe0|s1'
-991866206: 5166: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293000|s1'
-991866206: 5167: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293020|s1'
-991866206: 5168: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293040|s1'
-991866206: 5169: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293060|s1'
-991866206: 5170: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8293080|s1'
-991866206: 5171: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82930a0|s1'
-991866206: 5172: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82930c0|s1'
-991866206: 5173: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82930e0|s1'
-991866206: 5174: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8293100|s1'
-991866206: 5175: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8293120|s1'
-991866206: 5176: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293140|s1'
-991866206: 5177: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295000|s1'
-991866206: 5178: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x828df80|s1'
-991866206: 5179: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293160|s1'
-991866206: 5180: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293180|s1'
-991866206: 5181: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82931a0|s1'
-991866206: 5182: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82931c0|s1'
-991866206: 5183: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82931e0|s1'
-991866206: 5184: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293200|s1'
-991866206: 5185: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293220|s1'
-991866206: 5186: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295040|s1'
-991866206: 5187: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296000|s1'
-991866206: 5188: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293240|s1'
-991866206: 5189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293260|s1'
-991866206: 5190: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293280|s1'
-991866206: 5191: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82932a0|s1'
-991866206: 5192: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82932c0|s1'
-991866206: 5193: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82932e0|s1'
-991866206: 5194: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8293300|s1'
-991866206: 5195: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8293320|s1'
-991866206: 5196: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8293340|s1'
-991866206: 5197: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8293360|s1'
-991866206: 5198: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8293380|s1'
-991866206: 5199: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82933a0|s1'
-991866206: 5200: checking heap
-991866206: 5200: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295080|s1'
-991866206: 5201: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296080|s1'
-991866206: 5202: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82933c0|s1'
-991866206: 5203: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82933e0|s1'
-991866206: 5204: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293400|s1'
-991866206: 5205: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293420|s1'
-991866206: 5206: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293440|s1'
-991866206: 5207: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293460|s1'
-991866206: 5208: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293480|s1'
-991866206: 5209: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82950c0|s1'
-991866206: 5210: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296100|s1'
-991866206: 5211: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82934a0|s1'
-991866206: 5212: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82934c0|s1'
-991866206: 5213: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82934e0|s1'
-991866206: 5214: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293500|s1'
-991866206: 5215: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293520|s1'
-991866206: 5216: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293540|s1'
-991866206: 5217: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8293560|s1'
-991866206: 5218: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8293580|s1'
-991866206: 5219: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82935a0|s1'
-991866206: 5220: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82935c0|s1'
-991866206: 5221: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82935e0|s1'
-991866206: 5222: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8293600|s1'
-991866206: 5223: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8293620|s1'
-991866206: 5224: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293640|s1'
-991866206: 5225: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295100|s1'
-991866206: 5226: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296180|s1'
-991866206: 5227: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293660|s1'
-991866206: 5228: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293680|s1'
-991866206: 5229: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82936a0|s1'
-991866206: 5230: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82936c0|s1'
-991866206: 5231: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82936e0|s1'
-991866206: 5232: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293700|s1'
-991866206: 5233: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293720|s1'
-991866206: 5234: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295140|s1'
-991866206: 5235: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296200|s1'
-991866206: 5236: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293740|s1'
-991866206: 5237: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293760|s1'
-991866206: 5238: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293780|s1'
-991866206: 5239: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82937a0|s1'
-991866206: 5240: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82937c0|s1'
-991866206: 5241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82937e0|s1'
-991866206: 5242: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293800|s1'
-991866206: 5243: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295180|s1'
-991866206: 5244: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296280|s1'
-991866206: 5245: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293820|s1'
-991866206: 5246: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293840|s1'
-991866206: 5247: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293860|s1'
-991866206: 5248: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293880|s1'
-991866206: 5249: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82938a0|s1'
-991866206: 5250: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82938c0|s1'
-991866206: 5251: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82938e0|s1'
-991866206: 5252: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82951c0|s1'
-991866206: 5253: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296300|s1'
-991866206: 5254: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293900|s1'
-991866206: 5255: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293920|s1'
-991866206: 5256: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293940|s1'
-991866206: 5257: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293960|s1'
-991866206: 5258: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293980|s1'
-991866206: 5259: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82939a0|s1'
-991866206: 5260: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82939c0|s1'
-991866206: 5261: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82939e0|s1'
-991866206: 5262: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8293a00|s1'
-991866206: 5263: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8293a20|s1'
-991866206: 5264: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8293a40|s1'
-991866206: 5265: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293a60|s1'
-991866206: 5266: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295200|s1'
-991866206: 5267: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296380|s1'
-991866206: 5268: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293a80|s1'
-991866206: 5269: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293aa0|s1'
-991866206: 5270: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293ac0|s1'
-991866206: 5271: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293ae0|s1'
-991866206: 5272: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293b00|s1'
-991866206: 5273: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293b20|s1'
-991866206: 5274: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293b40|s1'
-991866206: 5275: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295240|s1'
-991866206: 5276: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296400|s1'
-991866206: 5277: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293b60|s1'
-991866206: 5278: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293b80|s1'
-991866206: 5279: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293ba0|s1'
-991866206: 5280: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293bc0|s1'
-991866206: 5281: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293be0|s1'
-991866206: 5282: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293c00|s1'
-991866206: 5283: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293c20|s1'
-991866206: 5284: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295280|s1'
-991866206: 5285: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296480|s1'
-991866206: 5286: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293c40|s1'
-991866206: 5287: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293c60|s1'
-991866206: 5288: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293c80|s1'
-991866206: 5289: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293ca0|s1'
-991866206: 5290: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293cc0|s1'
-991866206: 5291: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293ce0|s1'
-991866206: 5292: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293d00|s1'
-991866206: 5293: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82952c0|s1'
-991866206: 5294: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296500|s1'
-991866206: 5295: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293d20|s1'
-991866206: 5296: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293d40|s1'
-991866206: 5297: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293d60|s1'
-991866206: 5298: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293d80|s1'
-991866206: 5299: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293da0|s1'
-991866206: 5300: checking heap
-991866206: 5300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293dc0|s1'
-991866206: 5301: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8293de0|s1'
-991866206: 5302: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8293e00|s1'
-991866206: 5303: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8293e20|s1'
-991866206: 5304: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8293e40|s1'
-991866206: 5305: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8293e60|s1'
-991866206: 5306: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293e80|s1'
-991866206: 5307: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295300|s1'
-991866206: 5308: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296580|s1'
-991866206: 5309: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293ea0|s1'
-991866206: 5310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293ec0|s1'
-991866206: 5311: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8293ee0|s1'
-991866206: 5312: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8293f00|s1'
-991866206: 5313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8293f20|s1'
-991866206: 5314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8293f40|s1'
-991866206: 5315: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8293f60|s1'
-991866206: 5316: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8293f80|s1'
-991866206: 5317: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8293fa0|s1'
-991866206: 5318: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8293fc0|s1'
-991866206: 5319: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8293fe0|s1'
-991866206: 5320: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298000|s1'
-991866206: 5321: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295340|s1'
-991866206: 5322: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296600|s1'
-991866206: 5323: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298020|s1'
-991866206: 5324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298040|s1'
-991866206: 5325: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298060|s1'
-991866206: 5326: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298080|s1'
-991866206: 5327: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82980a0|s1'
-991866206: 5328: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82980c0|s1'
-991866206: 5329: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82980e0|s1'
-991866206: 5330: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8298100|s1'
-991866206: 5331: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298120|s1'
-991866206: 5332: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x8298140|s1'
-991866206: 5333: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8298160|s1'
-991866206: 5334: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8298180|s1'
-991866206: 5335: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x82981a0|s1'
-991866206: 5336: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82981c0|s1'
-991866206: 5337: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295380|s1'
-991866206: 5338: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296680|s1'
-991866206: 5339: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82981e0|s1'
-991866206: 5340: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298200|s1'
-991866206: 5341: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298220|s1'
-991866206: 5342: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298240|s1'
-991866206: 5343: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298260|s1'
-991866206: 5344: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298280|s1'
-991866206: 5345: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x82982a0|s1'
-991866206: 5346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82982c0|s1'
-991866206: 5347: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82953c0|s1'
-991866206: 5348: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296700|s1'
-991866206: 5349: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82982e0|s1'
-991866206: 5350: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298300|s1'
-991866206: 5351: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298320|s1'
-991866206: 5352: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298340|s1'
-991866206: 5353: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298360|s1'
-991866206: 5354: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298380|s1'
-991866206: 5355: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82983a0|s1'
-991866206: 5356: *** alloc: at 'ctbase.i:1826' for 8 bytes, got '0x82983c0|s1'
-991866206: 5357: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82983e0|s1'
-991866206: 5358: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298400|s1'
-991866206: 5359: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298420|s1'
-991866206: 5360: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298440|s1'
-991866206: 5361: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298460|s1'
-991866206: 5362: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8298480|s1'
-991866206: 5363: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82984a0|s1'
-991866206: 5364: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82984c0|s1'
-991866206: 5365: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295400|s1'
-991866206: 5366: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296780|s1'
-991866206: 5367: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82984e0|s1'
-991866206: 5368: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298500|s1'
-991866206: 5369: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298520|s1'
-991866206: 5370: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298540|s1'
-991866206: 5371: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298560|s1'
-991866206: 5372: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298580|s1'
-991866206: 5373: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82985a0|s1'
-991866206: 5374: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295440|s1'
-991866206: 5375: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296800|s1'
-991866206: 5376: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82985c0|s1'
-991866206: 5377: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82985e0|s1'
-991866206: 5378: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298600|s1'
-991866206: 5379: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298620|s1'
-991866206: 5380: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298640|s1'
-991866206: 5381: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298660|s1'
-991866206: 5382: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298680|s1'
-991866206: 5383: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82986a0|s1'
-991866206: 5384: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82986c0|s1'
-991866206: 5385: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82986e0|s1'
-991866206: 5386: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8298700|s1'
-991866206: 5387: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298720|s1'
-991866206: 5388: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295480|s1'
-991866206: 5389: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296880|s1'
-991866206: 5390: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298740|s1'
-991866206: 5391: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298760|s1'
-991866206: 5392: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298780|s1'
-991866206: 5393: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82987a0|s1'
-991866206: 5394: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82987c0|s1'
-991866206: 5395: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82987e0|s1'
-991866206: 5396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298800|s1'
-991866206: 5397: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82954c0|s1'
-991866206: 5398: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296900|s1'
-991866206: 5399: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298820|s1'
-991866206: 5400: checking heap
-991866206: 5400: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298840|s1'
-991866206: 5401: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298860|s1'
-991866206: 5402: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298880|s1'
-991866206: 5403: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82988a0|s1'
-991866206: 5404: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82988c0|s1'
-991866206: 5405: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82988e0|s1'
-991866206: 5406: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8298900|s1'
-991866206: 5407: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298920|s1'
-991866206: 5408: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8298940|s1'
-991866206: 5409: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8298960|s1'
-991866206: 5410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298980|s1'
-991866206: 5411: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295500|s1'
-991866206: 5412: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296980|s1'
-991866206: 5413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82989a0|s1'
-991866206: 5414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82989c0|s1'
-991866206: 5415: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82989e0|s1'
-991866206: 5416: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298a00|s1'
-991866206: 5417: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298a20|s1'
-991866206: 5418: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298a40|s1'
-991866206: 5419: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298a60|s1'
-991866206: 5420: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8298a80|s1'
-991866206: 5421: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298aa0|s1'
-991866206: 5422: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8298ac0|s1'
-991866206: 5423: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8298ae0|s1'
-991866206: 5424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298b00|s1'
-991866206: 5425: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295540|s1'
-991866206: 5426: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296a00|s1'
-991866206: 5427: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298b20|s1'
-991866206: 5428: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298b40|s1'
-991866206: 5429: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298b60|s1'
-991866206: 5430: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298b80|s1'
-991866206: 5431: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298ba0|s1'
-991866206: 5432: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298bc0|s1'
-991866206: 5433: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298be0|s1'
-991866206: 5434: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8298c00|s1'
-991866206: 5435: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298c20|s1'
-991866206: 5436: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x8298c40|s1'
-991866206: 5437: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8298c60|s1'
-991866206: 5438: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8298c80|s1'
-991866206: 5439: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8298ca0|s1'
-991866206: 5440: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298cc0|s1'
-991866206: 5441: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295580|s1'
-991866206: 5442: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296a80|s1'
-991866206: 5443: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298ce0|s1'
-991866206: 5444: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298d00|s1'
-991866206: 5445: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298d20|s1'
-991866206: 5446: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298d40|s1'
-991866206: 5447: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298d60|s1'
-991866206: 5448: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298d80|s1'
-991866206: 5449: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8298da0|s1'
-991866206: 5450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298dc0|s1'
-991866206: 5451: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82955c0|s1'
-991866206: 5452: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296b00|s1'
-991866206: 5453: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298de0|s1'
-991866206: 5454: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298e00|s1'
-991866206: 5455: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8298e20|s1'
-991866206: 5456: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8298e40|s1'
-991866206: 5457: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298e60|s1'
-991866206: 5458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298e80|s1'
-991866206: 5459: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298ea0|s1'
-991866206: 5460: *** alloc: at 'ctbase.i:1826' for 8 bytes, got '0x8298ec0|s1'
-991866206: 5461: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298ee0|s1'
-991866206: 5462: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298f00|s1'
-991866206: 5463: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298f20|s1'
-991866206: 5464: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8298f40|s1'
-991866206: 5465: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8298f60|s1'
-991866206: 5466: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8298f80|s1'
-991866206: 5467: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8298fa0|s1'
-991866206: 5468: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8298fc0|s1'
-991866206: 5469: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295600|s1'
-991866206: 5470: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296b80|s1'
-991866206: 5471: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8298fe0|s1'
-991866206: 5472: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a000|s1'
-991866206: 5473: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a020|s1'
-991866206: 5474: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a040|s1'
-991866206: 5475: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a060|s1'
-991866206: 5476: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a080|s1'
-991866206: 5477: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a0a0|s1'
-991866206: 5478: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295640|s1'
-991866206: 5479: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296c00|s1'
-991866206: 5480: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a0c0|s1'
-991866206: 5481: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a0e0|s1'
-991866206: 5482: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a100|s1'
-991866206: 5483: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a120|s1'
-991866206: 5484: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a140|s1'
-991866206: 5485: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a160|s1'
-991866206: 5486: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829a180|s1'
-991866206: 5487: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829a1a0|s1'
-991866206: 5488: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829a1c0|s1'
-991866206: 5489: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829a1e0|s1'
-991866206: 5490: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829a200|s1'
-991866206: 5491: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a220|s1'
-991866206: 5492: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295680|s1'
-991866206: 5493: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296c80|s1'
-991866206: 5494: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a240|s1'
-991866206: 5495: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a260|s1'
-991866206: 5496: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a280|s1'
-991866206: 5497: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a2a0|s1'
-991866206: 5498: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a2c0|s1'
-991866206: 5499: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a2e0|s1'
-991866206: 5500: checking heap
-991866206: 5500: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a300|s1'
-991866206: 5501: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82956c0|s1'
-991866206: 5502: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296d00|s1'
-991866206: 5503: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a320|s1'
-991866206: 5504: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a340|s1'
-991866206: 5505: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a360|s1'
-991866206: 5506: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a380|s1'
-991866206: 5507: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a3a0|s1'
-991866206: 5508: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a3c0|s1'
-991866206: 5509: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829a3e0|s1'
-991866206: 5510: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829a400|s1'
-991866206: 5511: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829a420|s1'
-991866206: 5512: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829a440|s1'
-991866206: 5513: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829a460|s1'
-991866206: 5514: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a480|s1'
-991866206: 5515: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295700|s1'
-991866206: 5516: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296d80|s1'
-991866206: 5517: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a4a0|s1'
-991866206: 5518: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a4c0|s1'
-991866206: 5519: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a4e0|s1'
-991866206: 5520: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a500|s1'
-991866206: 5521: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a520|s1'
-991866206: 5522: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a540|s1'
-991866206: 5523: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829a560|s1'
-991866206: 5524: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829a580|s1'
-991866206: 5525: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829a5a0|s1'
-991866206: 5526: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829a5c0|s1'
-991866206: 5527: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829a5e0|s1'
-991866206: 5528: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a600|s1'
-991866206: 5529: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295740|s1'
-991866206: 5530: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296e00|s1'
-991866206: 5531: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a620|s1'
-991866206: 5532: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a640|s1'
-991866206: 5533: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a660|s1'
-991866206: 5534: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a680|s1'
-991866206: 5535: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a6a0|s1'
-991866206: 5536: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a6c0|s1'
-991866206: 5537: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829a6e0|s1'
-991866206: 5538: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829a700|s1'
-991866206: 5539: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829a720|s1'
-991866206: 5540: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829a740|s1'
-991866206: 5541: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829a760|s1'
-991866206: 5542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a780|s1'
-991866206: 5543: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295780|s1'
-991866206: 5544: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296e80|s1'
-991866206: 5545: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a7a0|s1'
-991866206: 5546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a7c0|s1'
-991866206: 5547: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a7e0|s1'
-991866206: 5548: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a800|s1'
-991866206: 5549: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a820|s1'
-991866206: 5550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a840|s1'
-991866206: 5551: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829a860|s1'
-991866206: 5552: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829a880|s1'
-991866206: 5553: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829a8a0|s1'
-991866206: 5554: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829a8c0|s1'
-991866206: 5555: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829a8e0|s1'
-991866206: 5556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a900|s1'
-991866206: 5557: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82957c0|s1'
-991866206: 5558: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296f00|s1'
-991866206: 5559: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a920|s1'
-991866206: 5560: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a940|s1'
-991866206: 5561: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829a960|s1'
-991866206: 5562: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829a980|s1'
-991866206: 5563: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829a9a0|s1'
-991866206: 5564: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829a9c0|s1'
-991866206: 5565: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829a9e0|s1'
-991866206: 5566: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829aa00|s1'
-991866206: 5567: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829aa20|s1'
-991866206: 5568: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829aa40|s1'
-991866206: 5569: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829aa60|s1'
-991866206: 5570: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829aa80|s1'
-991866206: 5571: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829aaa0|s1'
-991866206: 5572: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829aac0|s1'
-991866206: 5573: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295800|s1'
-991866206: 5574: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8296f80|s1'
-991866206: 5575: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829aae0|s1'
-991866206: 5576: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ab00|s1'
-991866206: 5577: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ab20|s1'
-991866206: 5578: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ab40|s1'
-991866206: 5579: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ab60|s1'
-991866206: 5580: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ab80|s1'
-991866206: 5581: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829aba0|s1'
-991866206: 5582: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295840|s1'
-991866206: 5583: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c000|s1'
-991866206: 5584: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829abc0|s1'
-991866206: 5585: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829abe0|s1'
-991866206: 5586: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ac00|s1'
-991866206: 5587: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ac20|s1'
-991866206: 5588: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ac40|s1'
-991866206: 5589: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ac60|s1'
-991866206: 5590: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ac80|s1'
-991866206: 5591: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295880|s1'
-991866206: 5592: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c080|s1'
-991866206: 5593: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829aca0|s1'
-991866206: 5594: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829acc0|s1'
-991866206: 5595: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ace0|s1'
-991866206: 5596: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ad00|s1'
-991866206: 5597: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ad20|s1'
-991866206: 5598: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ad40|s1'
-991866206: 5599: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829ad60|s1'
-991866206: 5600: checking heap
-991866206: 5600: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829ad80|s1'
-991866206: 5601: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829ada0|s1'
-991866206: 5602: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829adc0|s1'
-991866206: 5603: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829ade0|s1'
-991866206: 5604: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ae00|s1'
-991866206: 5605: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82958c0|s1'
-991866206: 5606: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c100|s1'
-991866206: 5607: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ae20|s1'
-991866206: 5608: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ae40|s1'
-991866206: 5609: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ae60|s1'
-991866206: 5610: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ae80|s1'
-991866206: 5611: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829aea0|s1'
-991866206: 5612: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829aec0|s1'
-991866206: 5613: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829aee0|s1'
-991866206: 5614: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295900|s1'
-991866206: 5615: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c180|s1'
-991866206: 5616: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829af00|s1'
-991866206: 5617: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829af20|s1'
-991866206: 5618: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829af40|s1'
-991866206: 5619: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829af60|s1'
-991866206: 5620: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829af80|s1'
-991866206: 5621: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829afa0|s1'
-991866206: 5622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829afc0|s1'
-991866206: 5623: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295940|s1'
-991866206: 5624: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c200|s1'
-991866206: 5625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829afe0|s1'
-991866206: 5626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e000|s1'
-991866206: 5627: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e020|s1'
-991866206: 5628: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e040|s1'
-991866206: 5629: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e060|s1'
-991866206: 5630: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e080|s1'
-991866206: 5631: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829e0a0|s1'
-991866206: 5632: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829e0c0|s1'
-991866206: 5633: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829e0e0|s1'
-991866206: 5634: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829e100|s1'
-991866206: 5635: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829e120|s1'
-991866206: 5636: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e140|s1'
-991866206: 5637: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295980|s1'
-991866206: 5638: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c280|s1'
-991866206: 5639: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e160|s1'
-991866206: 5640: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e180|s1'
-991866206: 5641: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e1a0|s1'
-991866206: 5642: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e1c0|s1'
-991866206: 5643: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e1e0|s1'
-991866206: 5644: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e200|s1'
-991866206: 5645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e220|s1'
-991866206: 5646: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82959c0|s1'
-991866206: 5647: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c300|s1'
-991866206: 5648: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e240|s1'
-991866206: 5649: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e260|s1'
-991866206: 5650: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e280|s1'
-991866206: 5651: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e2a0|s1'
-991866206: 5652: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e2c0|s1'
-991866206: 5653: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e2e0|s1'
-991866206: 5654: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e300|s1'
-991866206: 5655: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295a00|s1'
-991866206: 5656: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c380|s1'
-991866206: 5657: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e320|s1'
-991866206: 5658: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e340|s1'
-991866206: 5659: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e360|s1'
-991866206: 5660: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e380|s1'
-991866206: 5661: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e3a0|s1'
-991866206: 5662: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e3c0|s1'
-991866206: 5663: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829e3e0|s1'
-991866206: 5664: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829e400|s1'
-991866206: 5665: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829e420|s1'
-991866206: 5666: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829e440|s1'
-991866206: 5667: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829e460|s1'
-991866206: 5668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e480|s1'
-991866206: 5669: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295a40|s1'
-991866206: 5670: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c400|s1'
-991866206: 5671: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e4a0|s1'
-991866206: 5672: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e4c0|s1'
-991866206: 5673: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e4e0|s1'
-991866206: 5674: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e500|s1'
-991866206: 5675: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e520|s1'
-991866206: 5676: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e540|s1'
-991866206: 5677: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e560|s1'
-991866206: 5678: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295a80|s1'
-991866206: 5679: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c480|s1'
-991866206: 5680: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e580|s1'
-991866206: 5681: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e5a0|s1'
-991866206: 5682: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e5c0|s1'
-991866206: 5683: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e5e0|s1'
-991866206: 5684: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e600|s1'
-991866206: 5685: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e620|s1'
-991866206: 5686: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829e640|s1'
-991866206: 5687: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829e660|s1'
-991866206: 5688: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829e680|s1'
-991866206: 5689: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829e6a0|s1'
-991866206: 5690: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829e6c0|s1'
-991866206: 5691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e6e0|s1'
-991866206: 5692: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295ac0|s1'
-991866206: 5693: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c500|s1'
-991866206: 5694: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e700|s1'
-991866206: 5695: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e720|s1'
-991866206: 5696: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e740|s1'
-991866206: 5697: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e760|s1'
-991866206: 5698: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e780|s1'
-991866206: 5699: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e7a0|s1'
-991866206: 5700: checking heap
-991866206: 5700: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e7c0|s1'
-991866206: 5701: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295b00|s1'
-991866206: 5702: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c580|s1'
-991866206: 5703: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e7e0|s1'
-991866206: 5704: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e800|s1'
-991866206: 5705: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e820|s1'
-991866206: 5706: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e840|s1'
-991866206: 5707: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e860|s1'
-991866206: 5708: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e880|s1'
-991866206: 5709: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829e8a0|s1'
-991866206: 5710: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829e8c0|s1'
-991866206: 5711: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829e8e0|s1'
-991866206: 5712: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829e900|s1'
-991866206: 5713: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829e920|s1'
-991866206: 5714: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e940|s1'
-991866206: 5715: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295b40|s1'
-991866206: 5716: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c600|s1'
-991866206: 5717: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e960|s1'
-991866206: 5718: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829e980|s1'
-991866206: 5719: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829e9a0|s1'
-991866206: 5720: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829e9c0|s1'
-991866206: 5721: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829e9e0|s1'
-991866206: 5722: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ea00|s1'
-991866206: 5723: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ea20|s1'
-991866206: 5724: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295b80|s1'
-991866206: 5725: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c680|s1'
-991866206: 5726: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ea40|s1'
-991866206: 5727: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ea60|s1'
-991866206: 5728: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ea80|s1'
-991866206: 5729: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829eaa0|s1'
-991866206: 5730: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829eac0|s1'
-991866206: 5731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829eae0|s1'
-991866206: 5732: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829eb00|s1'
-991866206: 5733: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829eb20|s1'
-991866206: 5734: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829eb40|s1'
-991866206: 5735: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829eb60|s1'
-991866206: 5736: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829eb80|s1'
-991866206: 5737: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829eba0|s1'
-991866206: 5738: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295bc0|s1'
-991866206: 5739: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c700|s1'
-991866206: 5740: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ebc0|s1'
-991866206: 5741: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ebe0|s1'
-991866206: 5742: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ec00|s1'
-991866206: 5743: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ec20|s1'
-991866206: 5744: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ec40|s1'
-991866206: 5745: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ec60|s1'
-991866206: 5746: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ec80|s1'
-991866206: 5747: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295c00|s1'
-991866206: 5748: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c780|s1'
-991866206: 5749: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829eca0|s1'
-991866206: 5750: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ecc0|s1'
-991866206: 5751: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ece0|s1'
-991866206: 5752: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ed00|s1'
-991866206: 5753: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ed20|s1'
-991866206: 5754: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ed40|s1'
-991866206: 5755: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829ed60|s1'
-991866206: 5756: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829ed80|s1'
-991866206: 5757: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x829eda0|s1'
-991866206: 5758: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x829edc0|s1'
-991866206: 5759: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x829ede0|s1'
-991866206: 5760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ee00|s1'
-991866206: 5761: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295c40|s1'
-991866206: 5762: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c800|s1'
-991866206: 5763: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ee20|s1'
-991866206: 5764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ee40|s1'
-991866206: 5765: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ee60|s1'
-991866206: 5766: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ee80|s1'
-991866206: 5767: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829eea0|s1'
-991866206: 5768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829eec0|s1'
-991866206: 5769: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829eee0|s1'
-991866206: 5770: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295c80|s1'
-991866206: 5771: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c880|s1'
-991866206: 5772: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ef00|s1'
-991866206: 5773: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829ef20|s1'
-991866206: 5774: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x829ef40|s1'
-991866206: 5775: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x829ef60|s1'
-991866206: 5776: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x829ef80|s1'
-991866206: 5777: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x829efa0|s1'
-991866206: 5778: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x829efc0|s1'
-991866206: 5779: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x829efe0|s1'
-991866206: 5780: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0000|s1'
-991866206: 5781: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0020|s1'
-991866206: 5782: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0040|s1'
-991866206: 5783: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0060|s1'
-991866206: 5784: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295cc0|s1'
-991866206: 5785: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c900|s1'
-991866206: 5786: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0080|s1'
-991866206: 5787: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a00a0|s1'
-991866206: 5788: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a00c0|s1'
-991866206: 5789: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a00e0|s1'
-991866206: 5790: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0100|s1'
-991866206: 5791: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0120|s1'
-991866206: 5792: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0140|s1'
-991866206: 5793: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295d00|s1'
-991866206: 5794: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829c980|s1'
-991866206: 5795: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0160|s1'
-991866206: 5796: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0180|s1'
-991866206: 5797: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a01a0|s1'
-991866206: 5798: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a01c0|s1'
-991866206: 5799: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a01e0|s1'
-991866206: 5800: checking heap
-991866206: 5800: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0200|s1'
-991866206: 5801: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0220|s1'
-991866206: 5802: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0240|s1'
-991866206: 5803: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0260|s1'
-991866206: 5804: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0280|s1'
-991866206: 5805: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a02a0|s1'
-991866206: 5806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a02c0|s1'
-991866206: 5807: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295d40|s1'
-991866206: 5808: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829ca00|s1'
-991866206: 5809: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a02e0|s1'
-991866206: 5810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0300|s1'
-991866206: 5811: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0320|s1'
-991866206: 5812: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0340|s1'
-991866206: 5813: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0360|s1'
-991866206: 5814: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0380|s1'
-991866206: 5815: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a03a0|s1'
-991866206: 5816: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295d80|s1'
-991866206: 5817: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829ca80|s1'
-991866206: 5818: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a03c0|s1'
-991866206: 5819: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a03e0|s1'
-991866206: 5820: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0400|s1'
-991866206: 5821: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0420|s1'
-991866206: 5822: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0440|s1'
-991866206: 5823: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0460|s1'
-991866206: 5824: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0480|s1'
-991866206: 5825: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a04a0|s1'
-991866206: 5826: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a04c0|s1'
-991866206: 5827: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a04e0|s1'
-991866206: 5828: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0500|s1'
-991866206: 5829: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0520|s1'
-991866206: 5830: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295dc0|s1'
-991866206: 5831: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cb00|s1'
-991866206: 5832: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0540|s1'
-991866206: 5833: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0560|s1'
-991866206: 5834: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0580|s1'
-991866206: 5835: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a05a0|s1'
-991866206: 5836: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a05c0|s1'
-991866206: 5837: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a05e0|s1'
-991866206: 5838: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0600|s1'
-991866206: 5839: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295e00|s1'
-991866206: 5840: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cb80|s1'
-991866206: 5841: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0620|s1'
-991866206: 5842: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0640|s1'
-991866206: 5843: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0660|s1'
-991866206: 5844: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0680|s1'
-991866206: 5845: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a06a0|s1'
-991866206: 5846: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a06c0|s1'
-991866206: 5847: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a06e0|s1'
-991866206: 5848: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0700|s1'
-991866206: 5849: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0720|s1'
-991866206: 5850: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0740|s1'
-991866206: 5851: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0760|s1'
-991866206: 5852: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0780|s1'
-991866206: 5853: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295e40|s1'
-991866206: 5854: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cc00|s1'
-991866206: 5855: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a07a0|s1'
-991866206: 5856: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a07c0|s1'
-991866206: 5857: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a07e0|s1'
-991866206: 5858: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0800|s1'
-991866206: 5859: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0820|s1'
-991866206: 5860: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0840|s1'
-991866206: 5861: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0860|s1'
-991866206: 5862: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295e80|s1'
-991866206: 5863: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cc80|s1'
-991866206: 5864: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0880|s1'
-991866206: 5865: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a08a0|s1'
-991866206: 5866: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a08c0|s1'
-991866206: 5867: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a08e0|s1'
-991866206: 5868: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0900|s1'
-991866206: 5869: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0920|s1'
-991866206: 5870: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0940|s1'
-991866206: 5871: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0960|s1'
-991866206: 5872: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0980|s1'
-991866206: 5873: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a09a0|s1'
-991866206: 5874: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a09c0|s1'
-991866206: 5875: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a09e0|s1'
-991866206: 5876: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295ec0|s1'
-991866206: 5877: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cd00|s1'
-991866206: 5878: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0a00|s1'
-991866206: 5879: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0a20|s1'
-991866206: 5880: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0a40|s1'
-991866206: 5881: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0a60|s1'
-991866206: 5882: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0a80|s1'
-991866206: 5883: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0aa0|s1'
-991866206: 5884: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0ac0|s1'
-991866206: 5885: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295f00|s1'
-991866206: 5886: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cd80|s1'
-991866206: 5887: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0ae0|s1'
-991866206: 5888: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0b00|s1'
-991866206: 5889: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0b20|s1'
-991866206: 5890: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0b40|s1'
-991866206: 5891: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0b60|s1'
-991866206: 5892: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0b80|s1'
-991866206: 5893: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0ba0|s1'
-991866206: 5894: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0bc0|s1'
-991866206: 5895: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0be0|s1'
-991866206: 5896: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0c00|s1'
-991866206: 5897: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0c20|s1'
-991866206: 5898: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0c40|s1'
-991866206: 5899: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295f40|s1'
-991866206: 5900: checking heap
-991866206: 5900: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829ce00|s1'
-991866206: 5901: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0c60|s1'
-991866206: 5902: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0c80|s1'
-991866206: 5903: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0ca0|s1'
-991866206: 5904: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0cc0|s1'
-991866206: 5905: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0ce0|s1'
-991866206: 5906: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0d00|s1'
-991866206: 5907: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0d20|s1'
-991866206: 5908: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0d40|s1'
-991866206: 5909: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0d60|s1'
-991866206: 5910: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0d80|s1'
-991866206: 5911: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0da0|s1'
-991866206: 5912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0dc0|s1'
-991866206: 5913: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295f80|s1'
-991866206: 5914: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829ce80|s1'
-991866206: 5915: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0de0|s1'
-991866206: 5916: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0e00|s1'
-991866206: 5917: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a0e20|s1'
-991866206: 5918: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a0e40|s1'
-991866206: 5919: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a0e60|s1'
-991866206: 5920: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a0e80|s1'
-991866206: 5921: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0ea0|s1'
-991866206: 5922: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0ec0|s1'
-991866206: 5923: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0ee0|s1'
-991866206: 5924: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0f00|s1'
-991866206: 5925: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0f20|s1'
-991866206: 5926: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0f40|s1'
-991866206: 5927: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a0f60|s1'
-991866206: 5928: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a0f80|s1'
-991866206: 5929: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a0fa0|s1'
-991866206: 5930: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a0fc0|s1'
-991866206: 5931: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a0fe0|s1'
-991866206: 5932: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a2000|s1'
-991866206: 5933: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a2020|s1'
-991866206: 5934: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a2040|s1'
-991866206: 5935: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a2060|s1'
-991866206: 5936: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a2080|s1'
-991866206: 5937: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a20a0|s1'
-991866206: 5938: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a20c0|s1'
-991866206: 5939: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8295fc0|s1'
-991866206: 5940: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cf00|s1'
-991866206: 5941: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a20e0|s1'
-991866206: 5942: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2100|s1'
-991866206: 5943: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2120|s1'
-991866206: 5944: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2140|s1'
-991866206: 5945: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2160|s1'
-991866206: 5946: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2180|s1'
-991866206: 5947: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a21a0|s1'
-991866206: 5948: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4000|s1'
-991866206: 5949: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x829cf80|s1'
-991866206: 5950: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a21c0|s1'
-991866206: 5951: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a21e0|s1'
-991866206: 5952: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2200|s1'
-991866206: 5953: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2220|s1'
-991866206: 5954: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2240|s1'
-991866206: 5955: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2260|s1'
-991866206: 5956: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2280|s1'
-991866206: 5957: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4040|s1'
-991866206: 5958: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5000|s1'
-991866206: 5959: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a22a0|s1'
-991866206: 5960: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a22c0|s1'
-991866206: 5961: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a22e0|s1'
-991866206: 5962: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2300|s1'
-991866206: 5963: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2320|s1'
-991866206: 5964: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2340|s1'
-991866206: 5965: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a2360|s1'
-991866206: 5966: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a2380|s1'
-991866206: 5967: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a23a0|s1'
-991866206: 5968: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a23c0|s1'
-991866206: 5969: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a23e0|s1'
-991866206: 5970: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2400|s1'
-991866206: 5971: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4080|s1'
-991866206: 5972: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5080|s1'
-991866206: 5973: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2420|s1'
-991866206: 5974: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2440|s1'
-991866206: 5975: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2460|s1'
-991866206: 5976: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2480|s1'
-991866206: 5977: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a24a0|s1'
-991866206: 5978: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a24c0|s1'
-991866206: 5979: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a24e0|s1'
-991866206: 5980: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a40c0|s1'
-991866206: 5981: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5100|s1'
-991866206: 5982: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2500|s1'
-991866206: 5983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2520|s1'
-991866206: 5984: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2540|s1'
-991866206: 5985: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2560|s1'
-991866206: 5986: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2580|s1'
-991866206: 5987: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a25a0|s1'
-991866206: 5988: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a25c0|s1'
-991866206: 5989: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4100|s1'
-991866206: 5990: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5180|s1'
-991866206: 5991: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a25e0|s1'
-991866206: 5992: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2600|s1'
-991866206: 5993: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2620|s1'
-991866206: 5994: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2640|s1'
-991866206: 5995: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2660|s1'
-991866206: 5996: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2680|s1'
-991866206: 5997: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a26a0|s1'
-991866206: 5998: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a26c0|s1'
-991866206: 5999: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a26e0|s1'
-991866206: 6000: checking heap
-991866206: 6000: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a2700|s1'
-991866206: 6001: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a2720|s1'
-991866206: 6002: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2740|s1'
-991866206: 6003: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4140|s1'
-991866206: 6004: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5200|s1'
-991866206: 6005: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2760|s1'
-991866206: 6006: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2780|s1'
-991866206: 6007: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a27a0|s1'
-991866206: 6008: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a27c0|s1'
-991866206: 6009: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a27e0|s1'
-991866206: 6010: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2800|s1'
-991866206: 6011: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2820|s1'
-991866206: 6012: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4180|s1'
-991866206: 6013: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5280|s1'
-991866206: 6014: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2840|s1'
-991866206: 6015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2860|s1'
-991866206: 6016: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2880|s1'
-991866206: 6017: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a28a0|s1'
-991866206: 6018: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a28c0|s1'
-991866206: 6019: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a28e0|s1'
-991866206: 6020: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2900|s1'
-991866206: 6021: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a41c0|s1'
-991866206: 6022: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5300|s1'
-991866206: 6023: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2920|s1'
-991866206: 6024: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2940|s1'
-991866206: 6025: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2960|s1'
-991866206: 6026: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2980|s1'
-991866206: 6027: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a29a0|s1'
-991866206: 6028: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a29c0|s1'
-991866206: 6029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a29e0|s1'
-991866206: 6030: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4200|s1'
-991866206: 6031: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5380|s1'
-991866206: 6032: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2a00|s1'
-991866206: 6033: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2a20|s1'
-991866206: 6034: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2a40|s1'
-991866206: 6035: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2a60|s1'
-991866206: 6036: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2a80|s1'
-991866206: 6037: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2aa0|s1'
-991866206: 6038: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a2ac0|s1'
-991866206: 6039: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a2ae0|s1'
-991866206: 6040: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a2b00|s1'
-991866206: 6041: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a2b20|s1'
-991866206: 6042: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a2b40|s1'
-991866206: 6043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2b60|s1'
-991866206: 6044: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4240|s1'
-991866206: 6045: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5400|s1'
-991866206: 6046: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2b80|s1'
-991866206: 6047: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2ba0|s1'
-991866206: 6048: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2bc0|s1'
-991866206: 6049: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2be0|s1'
-991866206: 6050: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2c00|s1'
-991866206: 6051: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2c20|s1'
-991866206: 6052: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2c40|s1'
-991866206: 6053: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4280|s1'
-991866206: 6054: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5480|s1'
-991866206: 6055: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2c60|s1'
-991866206: 6056: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2c80|s1'
-991866206: 6057: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2ca0|s1'
-991866206: 6058: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2cc0|s1'
-991866206: 6059: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2ce0|s1'
-991866206: 6060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2d00|s1'
-991866206: 6061: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2d20|s1'
-991866206: 6062: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a42c0|s1'
-991866206: 6063: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5500|s1'
-991866206: 6064: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2d40|s1'
-991866206: 6065: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2d60|s1'
-991866206: 6066: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2d80|s1'
-991866206: 6067: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2da0|s1'
-991866206: 6068: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2dc0|s1'
-991866206: 6069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2de0|s1'
-991866206: 6070: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2e00|s1'
-991866206: 6071: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4300|s1'
-991866206: 6072: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5580|s1'
-991866206: 6073: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2e20|s1'
-991866206: 6074: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2e40|s1'
-991866206: 6075: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2e60|s1'
-991866206: 6076: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a2e80|s1'
-991866206: 6077: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2ea0|s1'
-991866206: 6078: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2ec0|s1'
-991866206: 6079: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a2ee0|s1'
-991866206: 6080: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a2f00|s1'
-991866206: 6081: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a2f20|s1'
-991866206: 6082: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a2f40|s1'
-991866206: 6083: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a2f60|s1'
-991866206: 6084: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2f80|s1'
-991866206: 6085: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4340|s1'
-991866206: 6086: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5600|s1'
-991866206: 6087: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a2fa0|s1'
-991866206: 6088: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a2fc0|s1'
-991866206: 6089: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a2fe0|s1'
-991866206: 6090: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7000|s1'
-991866206: 6091: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7020|s1'
-991866206: 6092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7040|s1'
-991866206: 6093: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a7060|s1'
-991866206: 6094: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a7080|s1'
-991866206: 6095: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a70a0|s1'
-991866206: 6096: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a70c0|s1'
-991866206: 6097: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a70e0|s1'
-991866206: 6098: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7100|s1'
-991866206: 6099: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4380|s1'
-991866206: 6100: checking heap
-991866206: 6100: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5680|s1'
-991866206: 6101: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7120|s1'
-991866206: 6102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7140|s1'
-991866206: 6103: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7160|s1'
-991866206: 6104: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7180|s1'
-991866206: 6105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a71a0|s1'
-991866206: 6106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a71c0|s1'
-991866206: 6107: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a71e0|s1'
-991866206: 6108: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a7200|s1'
-991866206: 6109: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a7220|s1'
-991866206: 6110: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a7240|s1'
-991866206: 6111: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a7260|s1'
-991866206: 6112: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7280|s1'
-991866206: 6113: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a43c0|s1'
-991866206: 6114: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5700|s1'
-991866206: 6115: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a72a0|s1'
-991866206: 6116: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a72c0|s1'
-991866206: 6117: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a72e0|s1'
-991866206: 6118: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7300|s1'
-991866206: 6119: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7320|s1'
-991866206: 6120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7340|s1'
-991866206: 6121: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7360|s1'
-991866206: 6122: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4400|s1'
-991866206: 6123: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5780|s1'
-991866206: 6124: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7380|s1'
-991866206: 6125: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a73a0|s1'
-991866206: 6126: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a73c0|s1'
-991866206: 6127: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a73e0|s1'
-991866206: 6128: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7400|s1'
-991866206: 6129: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7420|s1'
-991866206: 6130: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7440|s1'
-991866206: 6131: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4440|s1'
-991866206: 6132: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5800|s1'
-991866206: 6133: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7460|s1'
-991866206: 6134: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7480|s1'
-991866206: 6135: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a74a0|s1'
-991866206: 6136: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a74c0|s1'
-991866206: 6137: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a74e0|s1'
-991866206: 6138: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7500|s1'
-991866206: 6139: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7520|s1'
-991866206: 6140: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4480|s1'
-991866206: 6141: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5880|s1'
-991866206: 6142: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7540|s1'
-991866206: 6143: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7560|s1'
-991866206: 6144: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7580|s1'
-991866206: 6145: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a75a0|s1'
-991866206: 6146: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a75c0|s1'
-991866206: 6147: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a75e0|s1'
-991866206: 6148: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a7600|s1'
-991866206: 6149: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a7620|s1'
-991866206: 6150: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a7640|s1'
-991866206: 6151: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a7660|s1'
-991866206: 6152: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a7680|s1'
-991866206: 6153: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a76a0|s1'
-991866206: 6154: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a44c0|s1'
-991866206: 6155: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5900|s1'
-991866206: 6156: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a76c0|s1'
-991866206: 6157: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a76e0|s1'
-991866206: 6158: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7700|s1'
-991866206: 6159: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7720|s1'
-991866206: 6160: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7740|s1'
-991866206: 6161: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7760|s1'
-991866206: 6162: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7780|s1'
-991866206: 6163: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4500|s1'
-991866206: 6164: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5980|s1'
-991866206: 6165: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a77a0|s1'
-991866206: 6166: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a77c0|s1'
-991866206: 6167: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a77e0|s1'
-991866206: 6168: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7800|s1'
-991866206: 6169: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7820|s1'
-991866206: 6170: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7840|s1'
-991866206: 6171: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7860|s1'
-991866206: 6172: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4540|s1'
-991866206: 6173: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5a00|s1'
-991866206: 6174: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7880|s1'
-991866206: 6175: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a78a0|s1'
-991866206: 6176: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a78c0|s1'
-991866206: 6177: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a78e0|s1'
-991866206: 6178: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7900|s1'
-991866206: 6179: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7920|s1'
-991866206: 6180: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7940|s1'
-991866206: 6181: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4580|s1'
-991866206: 6182: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5a80|s1'
-991866206: 6183: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7960|s1'
-991866206: 6184: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7980|s1'
-991866206: 6185: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a79a0|s1'
-991866206: 6186: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a79c0|s1'
-991866206: 6187: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a79e0|s1'
-991866206: 6188: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7a00|s1'
-991866206: 6189: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a7a20|s1'
-991866206: 6190: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a7a40|s1'
-991866206: 6191: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a7a60|s1'
-991866206: 6192: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a7a80|s1'
-991866206: 6193: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a7aa0|s1'
-991866206: 6194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7ac0|s1'
-991866206: 6195: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a45c0|s1'
-991866206: 6196: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5b00|s1'
-991866206: 6197: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7ae0|s1'
-991866206: 6198: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7b00|s1'
-991866206: 6199: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7b20|s1'
-991866206: 6200: checking heap
-991866206: 6200: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7b40|s1'
-991866206: 6201: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7b60|s1'
-991866206: 6202: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7b80|s1'
-991866206: 6203: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7ba0|s1'
-991866206: 6204: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4600|s1'
-991866206: 6205: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5b80|s1'
-991866206: 6206: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7bc0|s1'
-991866206: 6207: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7be0|s1'
-991866206: 6208: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7c00|s1'
-991866206: 6209: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7c20|s1'
-991866206: 6210: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7c40|s1'
-991866206: 6211: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7c60|s1'
-991866206: 6212: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a7c80|s1'
-991866206: 6213: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a7ca0|s1'
-991866206: 6214: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a7cc0|s1'
-991866206: 6215: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a7ce0|s1'
-991866206: 6216: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a7d00|s1'
-991866206: 6217: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7d20|s1'
-991866206: 6218: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4640|s1'
-991866206: 6219: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5c00|s1'
-991866206: 6220: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7d40|s1'
-991866206: 6221: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7d60|s1'
-991866206: 6222: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7d80|s1'
-991866206: 6223: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7da0|s1'
-991866206: 6224: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7dc0|s1'
-991866206: 6225: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7de0|s1'
-991866206: 6226: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7e00|s1'
-991866206: 6227: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4680|s1'
-991866206: 6228: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5c80|s1'
-991866206: 6229: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7e20|s1'
-991866206: 6230: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7e40|s1'
-991866206: 6231: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7e60|s1'
-991866206: 6232: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a7e80|s1'
-991866206: 6233: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7ea0|s1'
-991866206: 6234: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7ec0|s1'
-991866206: 6235: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a7ee0|s1'
-991866206: 6236: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a7f00|s1'
-991866206: 6237: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a7f20|s1'
-991866206: 6238: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a7f40|s1'
-991866206: 6239: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a7f60|s1'
-991866206: 6240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7f80|s1'
-991866206: 6241: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a46c0|s1'
-991866206: 6242: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5d00|s1'
-991866206: 6243: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a7fa0|s1'
-991866206: 6244: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a7fc0|s1'
-991866206: 6245: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a7fe0|s1'
-991866206: 6246: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9000|s1'
-991866206: 6247: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9020|s1'
-991866206: 6248: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9040|s1'
-991866206: 6249: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a9060|s1'
-991866206: 6250: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9080|s1'
-991866206: 6251: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a90a0|s1'
-991866206: 6252: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a90c0|s1'
-991866206: 6253: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a90e0|s1'
-991866206: 6254: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9100|s1'
-991866206: 6255: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4700|s1'
-991866206: 6256: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5d80|s1'
-991866206: 6257: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9120|s1'
-991866206: 6258: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9140|s1'
-991866206: 6259: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9160|s1'
-991866206: 6260: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9180|s1'
-991866206: 6261: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a91a0|s1'
-991866206: 6262: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a91c0|s1'
-991866206: 6263: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a91e0|s1'
-991866206: 6264: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9200|s1'
-991866206: 6265: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a9220|s1'
-991866206: 6266: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a9240|s1'
-991866206: 6267: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a9260|s1'
-991866206: 6268: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9280|s1'
-991866206: 6269: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4740|s1'
-991866206: 6270: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5e00|s1'
-991866206: 6271: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a92a0|s1'
-991866206: 6272: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a92c0|s1'
-991866206: 6273: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a92e0|s1'
-991866206: 6274: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9300|s1'
-991866206: 6275: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9320|s1'
-991866206: 6276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9340|s1'
-991866206: 6277: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9360|s1'
-991866206: 6278: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4780|s1'
-991866206: 6279: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5e80|s1'
-991866206: 6280: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9380|s1'
-991866206: 6281: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a93a0|s1'
-991866206: 6282: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a93c0|s1'
-991866206: 6283: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a93e0|s1'
-991866206: 6284: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9400|s1'
-991866206: 6285: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9420|s1'
-991866206: 6286: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9440|s1'
-991866206: 6287: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a47c0|s1'
-991866206: 6288: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5f00|s1'
-991866206: 6289: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9460|s1'
-991866206: 6290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9480|s1'
-991866206: 6291: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a94a0|s1'
-991866206: 6292: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a94c0|s1'
-991866206: 6293: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a94e0|s1'
-991866206: 6294: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9500|s1'
-991866206: 6295: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a9520|s1'
-991866206: 6296: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9540|s1'
-991866206: 6297: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a9560|s1'
-991866206: 6298: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a9580|s1'
-991866206: 6299: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a95a0|s1'
-991866206: 6300: checking heap
-991866206: 6300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a95c0|s1'
-991866206: 6301: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4800|s1'
-991866206: 6302: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82a5f80|s1'
-991866206: 6303: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a95e0|s1'
-991866206: 6304: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9600|s1'
-991866206: 6305: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9620|s1'
-991866206: 6306: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9640|s1'
-991866206: 6307: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9660|s1'
-991866206: 6308: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9680|s1'
-991866206: 6309: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a96a0|s1'
-991866206: 6310: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4840|s1'
-991866206: 6311: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab000|s1'
-991866206: 6312: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a96c0|s1'
-991866206: 6313: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a96e0|s1'
-991866206: 6314: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9700|s1'
-991866206: 6315: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9720|s1'
-991866206: 6316: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9740|s1'
-991866206: 6317: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9760|s1'
-991866206: 6318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9780|s1'
-991866206: 6319: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4880|s1'
-991866206: 6320: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab080|s1'
-991866206: 6321: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a97a0|s1'
-991866206: 6322: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a97c0|s1'
-991866206: 6323: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a97e0|s1'
-991866206: 6324: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9800|s1'
-991866206: 6325: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9820|s1'
-991866206: 6326: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9840|s1'
-991866206: 6327: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a9860|s1'
-991866206: 6328: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9880|s1'
-991866206: 6329: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a98a0|s1'
-991866206: 6330: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a98c0|s1'
-991866206: 6331: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a98e0|s1'
-991866206: 6332: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9900|s1'
-991866206: 6333: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a48c0|s1'
-991866206: 6334: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab100|s1'
-991866206: 6335: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9920|s1'
-991866206: 6336: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9940|s1'
-991866206: 6337: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9960|s1'
-991866206: 6338: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9980|s1'
-991866206: 6339: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a99a0|s1'
-991866206: 6340: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a99c0|s1'
-991866206: 6341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a99e0|s1'
-991866206: 6342: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4900|s1'
-991866206: 6343: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab180|s1'
-991866206: 6344: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9a00|s1'
-991866206: 6345: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9a20|s1'
-991866206: 6346: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9a40|s1'
-991866206: 6347: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9a60|s1'
-991866206: 6348: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9a80|s1'
-991866206: 6349: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9aa0|s1'
-991866206: 6350: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a9ac0|s1'
-991866206: 6351: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9ae0|s1'
-991866206: 6352: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a9b00|s1'
-991866206: 6353: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a9b20|s1'
-991866206: 6354: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a9b40|s1'
-991866206: 6355: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9b60|s1'
-991866206: 6356: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4940|s1'
-991866206: 6357: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab200|s1'
-991866206: 6358: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9b80|s1'
-991866206: 6359: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9ba0|s1'
-991866206: 6360: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9bc0|s1'
-991866206: 6361: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9be0|s1'
-991866206: 6362: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9c00|s1'
-991866206: 6363: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9c20|s1'
-991866206: 6364: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9c40|s1'
-991866206: 6365: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4980|s1'
-991866206: 6366: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab280|s1'
-991866206: 6367: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9c60|s1'
-991866206: 6368: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9c80|s1'
-991866206: 6369: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9ca0|s1'
-991866206: 6370: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9cc0|s1'
-991866206: 6371: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9ce0|s1'
-991866206: 6372: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9d00|s1'
-991866206: 6373: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a9d20|s1'
-991866206: 6374: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9d40|s1'
-991866206: 6375: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a9d60|s1'
-991866206: 6376: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a9d80|s1'
-991866206: 6377: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82a9da0|s1'
-991866206: 6378: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9dc0|s1'
-991866206: 6379: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a49c0|s1'
-991866206: 6380: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab300|s1'
-991866206: 6381: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9de0|s1'
-991866206: 6382: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9e00|s1'
-991866206: 6383: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9e20|s1'
-991866206: 6384: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9e40|s1'
-991866206: 6385: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9e60|s1'
-991866206: 6386: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9e80|s1'
-991866206: 6387: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9ea0|s1'
-991866206: 6388: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4a00|s1'
-991866206: 6389: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab380|s1'
-991866206: 6390: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9ec0|s1'
-991866206: 6391: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9ee0|s1'
-991866206: 6392: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82a9f00|s1'
-991866206: 6393: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82a9f20|s1'
-991866206: 6394: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82a9f40|s1'
-991866206: 6395: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82a9f60|s1'
-991866206: 6396: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82a9f80|s1'
-991866206: 6397: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82a9fa0|s1'
-991866206: 6398: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82a9fc0|s1'
-991866206: 6399: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82a9fe0|s1'
-991866206: 6400: checking heap
-991866206: 6400: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ad000|s1'
-991866206: 6401: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad020|s1'
-991866206: 6402: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4a40|s1'
-991866206: 6403: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab400|s1'
-991866206: 6404: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad040|s1'
-991866206: 6405: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad060|s1'
-991866206: 6406: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad080|s1'
-991866206: 6407: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad0a0|s1'
-991866206: 6408: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad0c0|s1'
-991866206: 6409: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad0e0|s1'
-991866206: 6410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad100|s1'
-991866206: 6411: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4a80|s1'
-991866206: 6412: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab480|s1'
-991866206: 6413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad120|s1'
-991866206: 6414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad140|s1'
-991866206: 6415: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad160|s1'
-991866206: 6416: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad180|s1'
-991866206: 6417: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad1a0|s1'
-991866206: 6418: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad1c0|s1'
-991866206: 6419: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ad1e0|s1'
-991866206: 6420: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ad200|s1'
-991866206: 6421: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ad220|s1'
-991866206: 6422: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ad240|s1'
-991866206: 6423: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ad260|s1'
-991866206: 6424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad280|s1'
-991866206: 6425: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4ac0|s1'
-991866206: 6426: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab500|s1'
-991866206: 6427: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad2a0|s1'
-991866206: 6428: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad2c0|s1'
-991866206: 6429: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad2e0|s1'
-991866206: 6430: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad300|s1'
-991866206: 6431: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad320|s1'
-991866206: 6432: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad340|s1'
-991866206: 6433: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad360|s1'
-991866206: 6434: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4b00|s1'
-991866206: 6435: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab580|s1'
-991866206: 6436: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad380|s1'
-991866206: 6437: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad3a0|s1'
-991866206: 6438: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad3c0|s1'
-991866206: 6439: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad3e0|s1'
-991866206: 6440: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad400|s1'
-991866206: 6441: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad420|s1'
-991866206: 6442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad440|s1'
-991866206: 6443: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4b40|s1'
-991866206: 6444: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab600|s1'
-991866206: 6445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad460|s1'
-991866206: 6446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad480|s1'
-991866206: 6447: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad4a0|s1'
-991866206: 6448: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad4c0|s1'
-991866206: 6449: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad4e0|s1'
-991866206: 6450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad500|s1'
-991866206: 6451: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ad520|s1'
-991866206: 6452: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ad540|s1'
-991866206: 6453: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ad560|s1'
-991866206: 6454: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ad580|s1'
-991866206: 6455: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ad5a0|s1'
-991866206: 6456: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad5c0|s1'
-991866206: 6457: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4b80|s1'
-991866206: 6458: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab680|s1'
-991866206: 6459: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad5e0|s1'
-991866206: 6460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad600|s1'
-991866206: 6461: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad620|s1'
-991866206: 6462: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad640|s1'
-991866206: 6463: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad660|s1'
-991866206: 6464: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad680|s1'
-991866206: 6465: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad6a0|s1'
-991866206: 6466: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4bc0|s1'
-991866206: 6467: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab700|s1'
-991866206: 6468: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad6c0|s1'
-991866206: 6469: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad6e0|s1'
-991866206: 6470: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad700|s1'
-991866206: 6471: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad720|s1'
-991866206: 6472: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad740|s1'
-991866206: 6473: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad760|s1'
-991866206: 6474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad780|s1'
-991866206: 6475: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4c00|s1'
-991866206: 6476: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab780|s1'
-991866206: 6477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad7a0|s1'
-991866206: 6478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad7c0|s1'
-991866206: 6479: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad7e0|s1'
-991866206: 6480: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad800|s1'
-991866206: 6481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad820|s1'
-991866206: 6482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad840|s1'
-991866206: 6483: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ad860|s1'
-991866206: 6484: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ad880|s1'
-991866206: 6485: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ad8a0|s1'
-991866206: 6486: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ad8c0|s1'
-991866206: 6487: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ad8e0|s1'
-991866206: 6488: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad900|s1'
-991866206: 6489: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4c40|s1'
-991866206: 6490: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab800|s1'
-991866206: 6491: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad920|s1'
-991866206: 6492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad940|s1'
-991866206: 6493: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ad960|s1'
-991866206: 6494: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ad980|s1'
-991866206: 6495: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ad9a0|s1'
-991866206: 6496: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad9c0|s1'
-991866206: 6497: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ad9e0|s1'
-991866206: 6498: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4c80|s1'
-991866206: 6499: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab880|s1'
-991866206: 6500: checking heap
-991866206: 6500: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ada00|s1'
-991866206: 6501: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ada20|s1'
-991866206: 6502: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ada40|s1'
-991866206: 6503: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ada60|s1'
-991866206: 6504: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ada80|s1'
-991866206: 6505: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adaa0|s1'
-991866206: 6506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adac0|s1'
-991866206: 6507: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4cc0|s1'
-991866206: 6508: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab900|s1'
-991866206: 6509: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adae0|s1'
-991866206: 6510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adb00|s1'
-991866206: 6511: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82adb20|s1'
-991866206: 6512: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82adb40|s1'
-991866206: 6513: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adb60|s1'
-991866206: 6514: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adb80|s1'
-991866206: 6515: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adba0|s1'
-991866206: 6516: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4d00|s1'
-991866206: 6517: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82ab980|s1'
-991866206: 6518: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adbc0|s1'
-991866206: 6519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adbe0|s1'
-991866206: 6520: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82adc00|s1'
-991866206: 6521: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82adc20|s1'
-991866206: 6522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adc40|s1'
-991866206: 6523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adc60|s1'
-991866206: 6524: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82adc80|s1'
-991866206: 6525: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82adca0|s1'
-991866206: 6526: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82adcc0|s1'
-991866206: 6527: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82adce0|s1'
-991866206: 6528: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82add00|s1'
-991866206: 6529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82add20|s1'
-991866206: 6530: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4d40|s1'
-991866206: 6531: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82aba00|s1'
-991866206: 6532: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82add40|s1'
-991866206: 6533: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82add60|s1'
-991866206: 6534: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82add80|s1'
-991866206: 6535: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82adda0|s1'
-991866206: 6536: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82addc0|s1'
-991866206: 6537: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adde0|s1'
-991866206: 6538: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ade00|s1'
-991866206: 6539: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4d80|s1'
-991866206: 6540: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82aba80|s1'
-991866206: 6541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ade20|s1'
-991866206: 6542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ade40|s1'
-991866206: 6543: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ade60|s1'
-991866206: 6544: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ade80|s1'
-991866206: 6545: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adea0|s1'
-991866206: 6546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adec0|s1'
-991866206: 6547: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adee0|s1'
-991866206: 6548: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4dc0|s1'
-991866206: 6549: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abb00|s1'
-991866206: 6550: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adf00|s1'
-991866206: 6551: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adf20|s1'
-991866206: 6552: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82adf40|s1'
-991866206: 6553: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82adf60|s1'
-991866206: 6554: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adf80|s1'
-991866206: 6555: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adfa0|s1'
-991866206: 6556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82adfc0|s1'
-991866206: 6557: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4e00|s1'
-991866206: 6558: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abb80|s1'
-991866206: 6559: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82adfe0|s1'
-991866206: 6560: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af000|s1'
-991866206: 6561: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af020|s1'
-991866206: 6562: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af040|s1'
-991866206: 6563: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af060|s1'
-991866206: 6564: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af080|s1'
-991866206: 6565: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82af0a0|s1'
-991866206: 6566: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82af0c0|s1'
-991866206: 6567: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82af0e0|s1'
-991866206: 6568: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82af100|s1'
-991866206: 6569: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82af120|s1'
-991866206: 6570: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af140|s1'
-991866206: 6571: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4e40|s1'
-991866206: 6572: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abc00|s1'
-991866206: 6573: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af160|s1'
-991866206: 6574: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af180|s1'
-991866206: 6575: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af1a0|s1'
-991866206: 6576: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af1c0|s1'
-991866206: 6577: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af1e0|s1'
-991866206: 6578: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af200|s1'
-991866206: 6579: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af220|s1'
-991866206: 6580: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4e80|s1'
-991866206: 6581: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abc80|s1'
-991866206: 6582: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af240|s1'
-991866206: 6583: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af260|s1'
-991866206: 6584: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af280|s1'
-991866206: 6585: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af2a0|s1'
-991866206: 6586: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af2c0|s1'
-991866206: 6587: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af2e0|s1'
-991866206: 6588: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82af300|s1'
-991866206: 6589: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82af320|s1'
-991866206: 6590: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82af340|s1'
-991866206: 6591: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82af360|s1'
-991866206: 6592: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82af380|s1'
-991866206: 6593: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af3a0|s1'
-991866206: 6594: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4ec0|s1'
-991866206: 6595: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abd00|s1'
-991866206: 6596: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af3c0|s1'
-991866206: 6597: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af3e0|s1'
-991866206: 6598: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af400|s1'
-991866206: 6599: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af420|s1'
-991866206: 6600: checking heap
-991866206: 6600: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af440|s1'
-991866206: 6601: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af460|s1'
-991866206: 6602: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af480|s1'
-991866206: 6603: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4f00|s1'
-991866206: 6604: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abd80|s1'
-991866206: 6605: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af4a0|s1'
-991866206: 6606: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af4c0|s1'
-991866206: 6607: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af4e0|s1'
-991866206: 6608: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af500|s1'
-991866206: 6609: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af520|s1'
-991866206: 6610: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af540|s1'
-991866206: 6611: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82af560|s1'
-991866206: 6612: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82af580|s1'
-991866206: 6613: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82af5a0|s1'
-991866206: 6614: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82af5c0|s1'
-991866206: 6615: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82af5e0|s1'
-991866206: 6616: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af600|s1'
-991866206: 6617: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4f40|s1'
-991866206: 6618: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abe00|s1'
-991866206: 6619: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af620|s1'
-991866206: 6620: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af640|s1'
-991866206: 6621: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af660|s1'
-991866206: 6622: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af680|s1'
-991866206: 6623: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af6a0|s1'
-991866206: 6624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af6c0|s1'
-991866206: 6625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af6e0|s1'
-991866206: 6626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af700|s1'
-991866206: 6627: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af720|s1'
-991866206: 6628: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4f80|s1'
-991866206: 6629: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abe80|s1'
-991866206: 6630: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af740|s1'
-991866206: 6631: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af760|s1'
-991866206: 6632: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af780|s1'
-991866206: 6633: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af7a0|s1'
-991866206: 6634: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af7c0|s1'
-991866206: 6635: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af7e0|s1'
-991866206: 6636: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af800|s1'
-991866206: 6637: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82a4fc0|s1'
-991866206: 6638: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abf00|s1'
-991866206: 6639: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af820|s1'
-991866206: 6640: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af840|s1'
-991866206: 6641: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af860|s1'
-991866206: 6642: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82af880|s1'
-991866206: 6643: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af8a0|s1'
-991866206: 6644: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af8c0|s1'
-991866206: 6645: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82af8e0|s1'
-991866206: 6646: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82af900|s1'
-991866206: 6647: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82af920|s1'
-991866206: 6648: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82af940|s1'
-991866206: 6649: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82af960|s1'
-991866206: 6650: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af980|s1'
-991866206: 6651: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1000|s1'
-991866206: 6652: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82abf80|s1'
-991866206: 6653: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82af9a0|s1'
-991866206: 6654: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82af9c0|s1'
-991866206: 6655: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82af9e0|s1'
-991866206: 6656: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82afa00|s1'
-991866206: 6657: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afa20|s1'
-991866206: 6658: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afa40|s1'
-991866206: 6659: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afa60|s1'
-991866206: 6660: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afa80|s1'
-991866206: 6661: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afaa0|s1'
-991866206: 6662: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1040|s1'
-991866206: 6663: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3000|s1'
-991866206: 6664: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afac0|s1'
-991866206: 6665: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afae0|s1'
-991866206: 6666: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82afb00|s1'
-991866206: 6667: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82afb20|s1'
-991866206: 6668: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afb40|s1'
-991866206: 6669: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afb60|s1'
-991866206: 6670: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afb80|s1'
-991866206: 6671: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1080|s1'
-991866206: 6672: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3080|s1'
-991866206: 6673: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afba0|s1'
-991866206: 6674: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afbc0|s1'
-991866206: 6675: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82afbe0|s1'
-991866206: 6676: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82afc00|s1'
-991866206: 6677: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afc20|s1'
-991866206: 6678: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afc40|s1'
-991866206: 6679: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82afc60|s1'
-991866206: 6680: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82afc80|s1'
-991866206: 6681: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82afca0|s1'
-991866206: 6682: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82afcc0|s1'
-991866206: 6683: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82afce0|s1'
-991866206: 6684: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82afd00|s1'
-991866206: 6685: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82afd20|s1'
-991866206: 6686: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82afd40|s1'
-991866206: 6687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afd60|s1'
-991866206: 6688: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b10c0|s1'
-991866206: 6689: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3100|s1'
-991866206: 6690: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afd80|s1'
-991866206: 6691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afda0|s1'
-991866206: 6692: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82afdc0|s1'
-991866206: 6693: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82afde0|s1'
-991866206: 6694: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afe00|s1'
-991866206: 6695: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afe20|s1'
-991866206: 6696: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afe40|s1'
-991866206: 6697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afe60|s1'
-991866206: 6698: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afe80|s1'
-991866206: 6699: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1100|s1'
-991866206: 6700: checking heap
-991866206: 6700: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3180|s1'
-991866206: 6701: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82afea0|s1'
-991866206: 6702: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82afec0|s1'
-991866206: 6703: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82afee0|s1'
-991866206: 6704: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82aff00|s1'
-991866206: 6705: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82aff20|s1'
-991866206: 6706: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82aff40|s1'
-991866206: 6707: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82aff60|s1'
-991866206: 6708: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82aff80|s1'
-991866206: 6709: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82affa0|s1'
-991866206: 6710: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82affc0|s1'
-991866206: 6711: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82affe0|s1'
-991866206: 6712: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5000|s1'
-991866206: 6713: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1140|s1'
-991866206: 6714: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3200|s1'
-991866206: 6715: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5020|s1'
-991866206: 6716: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5040|s1'
-991866206: 6717: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5060|s1'
-991866206: 6718: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5080|s1'
-991866206: 6719: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b50a0|s1'
-991866206: 6720: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b50c0|s1'
-991866206: 6721: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b50e0|s1'
-991866206: 6722: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5100|s1'
-991866206: 6723: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5120|s1'
-991866206: 6724: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1180|s1'
-991866206: 6725: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3280|s1'
-991866206: 6726: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5140|s1'
-991866206: 6727: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5160|s1'
-991866206: 6728: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5180|s1'
-991866206: 6729: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b51a0|s1'
-991866206: 6730: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b51c0|s1'
-991866206: 6731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b51e0|s1'
-991866206: 6732: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b5200|s1'
-991866206: 6733: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b5220|s1'
-991866206: 6734: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b5240|s1'
-991866206: 6735: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b5260|s1'
-991866206: 6736: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b5280|s1'
-991866206: 6737: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b52a0|s1'
-991866206: 6738: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b11c0|s1'
-991866206: 6739: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3300|s1'
-991866206: 6740: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b52c0|s1'
-991866206: 6741: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b52e0|s1'
-991866206: 6742: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5300|s1'
-991866206: 6743: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5320|s1'
-991866206: 6744: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5340|s1'
-991866206: 6745: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5360|s1'
-991866206: 6746: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5380|s1'
-991866206: 6747: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b53a0|s1'
-991866206: 6748: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b53c0|s1'
-991866206: 6749: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1200|s1'
-991866206: 6750: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3380|s1'
-991866206: 6751: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b53e0|s1'
-991866206: 6752: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5400|s1'
-991866206: 6753: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5420|s1'
-991866206: 6754: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5440|s1'
-991866206: 6755: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5460|s1'
-991866206: 6756: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5480|s1'
-991866206: 6757: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b54a0|s1'
-991866206: 6758: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b54c0|s1'
-991866206: 6759: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b54e0|s1'
-991866206: 6760: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b5500|s1'
-991866206: 6761: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b5520|s1'
-991866206: 6762: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5540|s1'
-991866206: 6763: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1240|s1'
-991866206: 6764: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3400|s1'
-991866206: 6765: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5560|s1'
-991866206: 6766: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5580|s1'
-991866206: 6767: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b55a0|s1'
-991866206: 6768: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b55c0|s1'
-991866206: 6769: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b55e0|s1'
-991866206: 6770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5600|s1'
-991866206: 6771: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5620|s1'
-991866206: 6772: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1280|s1'
-991866206: 6773: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3480|s1'
-991866206: 6774: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5640|s1'
-991866206: 6775: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5660|s1'
-991866206: 6776: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5680|s1'
-991866206: 6777: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b56a0|s1'
-991866206: 6778: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b56c0|s1'
-991866206: 6779: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b56e0|s1'
-991866206: 6780: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b5700|s1'
-991866206: 6781: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b5720|s1'
-991866206: 6782: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b5740|s1'
-991866206: 6783: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b5760|s1'
-991866206: 6784: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b5780|s1'
-991866206: 6785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b57a0|s1'
-991866206: 6786: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b12c0|s1'
-991866206: 6787: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3500|s1'
-991866206: 6788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b57c0|s1'
-991866206: 6789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b57e0|s1'
-991866206: 6790: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5800|s1'
-991866206: 6791: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5820|s1'
-991866206: 6792: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5840|s1'
-991866206: 6793: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5860|s1'
-991866206: 6794: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5880|s1'
-991866206: 6795: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1300|s1'
-991866206: 6796: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3580|s1'
-991866206: 6797: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b58a0|s1'
-991866206: 6798: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b58c0|s1'
-991866206: 6799: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b58e0|s1'
-991866206: 6800: checking heap
-991866206: 6800: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5900|s1'
-991866206: 6801: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5920|s1'
-991866206: 6802: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5940|s1'
-991866206: 6803: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b5960|s1'
-991866206: 6804: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b5980|s1'
-991866206: 6805: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b59a0|s1'
-991866206: 6806: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b59c0|s1'
-991866206: 6807: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b59e0|s1'
-991866206: 6808: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5a00|s1'
-991866206: 6809: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1340|s1'
-991866206: 6810: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3600|s1'
-991866206: 6811: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5a20|s1'
-991866206: 6812: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5a40|s1'
-991866206: 6813: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5a60|s1'
-991866206: 6814: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5a80|s1'
-991866206: 6815: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5aa0|s1'
-991866206: 6816: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5ac0|s1'
-991866206: 6817: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5ae0|s1'
-991866206: 6818: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1380|s1'
-991866206: 6819: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3680|s1'
-991866206: 6820: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5b00|s1'
-991866206: 6821: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5b20|s1'
-991866206: 6822: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5b40|s1'
-991866206: 6823: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5b60|s1'
-991866206: 6824: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5b80|s1'
-991866206: 6825: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5ba0|s1'
-991866206: 6826: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b5bc0|s1'
-991866206: 6827: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b5be0|s1'
-991866206: 6828: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b5c00|s1'
-991866206: 6829: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b5c20|s1'
-991866206: 6830: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b5c40|s1'
-991866206: 6831: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5c60|s1'
-991866206: 6832: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b13c0|s1'
-991866206: 6833: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3700|s1'
-991866206: 6834: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5c80|s1'
-991866206: 6835: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5ca0|s1'
-991866206: 6836: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5cc0|s1'
-991866206: 6837: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5ce0|s1'
-991866206: 6838: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5d00|s1'
-991866206: 6839: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5d20|s1'
-991866206: 6840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5d40|s1'
-991866206: 6841: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1400|s1'
-991866206: 6842: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3780|s1'
-991866206: 6843: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5d60|s1'
-991866206: 6844: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5d80|s1'
-991866206: 6845: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5da0|s1'
-991866206: 6846: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5dc0|s1'
-991866206: 6847: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5de0|s1'
-991866206: 6848: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5e00|s1'
-991866206: 6849: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b5e20|s1'
-991866206: 6850: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b5e40|s1'
-991866206: 6851: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b5e60|s1'
-991866206: 6852: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b5e80|s1'
-991866206: 6853: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b5ea0|s1'
-991866206: 6854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5ec0|s1'
-991866206: 6855: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1440|s1'
-991866206: 6856: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3800|s1'
-991866206: 6857: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5ee0|s1'
-991866206: 6858: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5f00|s1'
-991866206: 6859: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b5f20|s1'
-991866206: 6860: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b5f40|s1'
-991866206: 6861: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5f60|s1'
-991866206: 6862: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5f80|s1'
-991866206: 6863: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5fa0|s1'
-991866206: 6864: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1480|s1'
-991866206: 6865: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3880|s1'
-991866206: 6866: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b5fc0|s1'
-991866206: 6867: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b5fe0|s1'
-991866206: 6868: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7000|s1'
-991866206: 6869: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7020|s1'
-991866206: 6870: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7040|s1'
-991866206: 6871: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7060|s1'
-991866206: 6872: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b7080|s1'
-991866206: 6873: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b70a0|s1'
-991866206: 6874: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b70c0|s1'
-991866206: 6875: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b70e0|s1'
-991866206: 6876: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b7100|s1'
-991866206: 6877: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7120|s1'
-991866206: 6878: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b14c0|s1'
-991866206: 6879: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3900|s1'
-991866206: 6880: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7140|s1'
-991866206: 6881: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7160|s1'
-991866206: 6882: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7180|s1'
-991866206: 6883: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b71a0|s1'
-991866206: 6884: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b71c0|s1'
-991866206: 6885: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b71e0|s1'
-991866206: 6886: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7200|s1'
-991866206: 6887: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1500|s1'
-991866206: 6888: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3980|s1'
-991866206: 6889: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7220|s1'
-991866206: 6890: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7240|s1'
-991866206: 6891: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7260|s1'
-991866206: 6892: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7280|s1'
-991866206: 6893: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b72a0|s1'
-991866206: 6894: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b72c0|s1'
-991866206: 6895: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b72e0|s1'
-991866206: 6896: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b7300|s1'
-991866206: 6897: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b7320|s1'
-991866206: 6898: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b7340|s1'
-991866206: 6899: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b7360|s1'
-991866206: 6900: checking heap
-991866206: 6900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7380|s1'
-991866206: 6901: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1540|s1'
-991866206: 6902: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3a00|s1'
-991866206: 6903: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b73a0|s1'
-991866206: 6904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b73c0|s1'
-991866206: 6905: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b73e0|s1'
-991866206: 6906: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7400|s1'
-991866206: 6907: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7420|s1'
-991866206: 6908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7440|s1'
-991866206: 6909: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7460|s1'
-991866206: 6910: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1580|s1'
-991866206: 6911: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3a80|s1'
-991866206: 6912: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7480|s1'
-991866206: 6913: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b74a0|s1'
-991866206: 6914: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b74c0|s1'
-991866206: 6915: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b74e0|s1'
-991866206: 6916: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7500|s1'
-991866206: 6917: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7520|s1'
-991866206: 6918: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b7540|s1'
-991866206: 6919: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b7560|s1'
-991866206: 6920: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b7580|s1'
-991866206: 6921: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b75a0|s1'
-991866206: 6922: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b75c0|s1'
-991866206: 6923: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b75e0|s1'
-991866206: 6924: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b15c0|s1'
-991866206: 6925: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3b00|s1'
-991866206: 6926: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7600|s1'
-991866206: 6927: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7620|s1'
-991866206: 6928: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7640|s1'
-991866206: 6929: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7660|s1'
-991866206: 6930: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7680|s1'
-991866206: 6931: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b76a0|s1'
-991866206: 6932: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b76c0|s1'
-991866206: 6933: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b76e0|s1'
-991866206: 6934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7700|s1'
-991866206: 6935: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1600|s1'
-991866206: 6936: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3b80|s1'
-991866206: 6937: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7720|s1'
-991866206: 6938: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7740|s1'
-991866206: 6939: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7760|s1'
-991866206: 6940: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7780|s1'
-991866206: 6941: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b77a0|s1'
-991866206: 6942: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b77c0|s1'
-991866206: 6943: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b77e0|s1'
-991866206: 6944: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b7800|s1'
-991866206: 6945: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b7820|s1'
-991866206: 6946: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b7840|s1'
-991866206: 6947: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b7860|s1'
-991866206: 6948: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7880|s1'
-991866206: 6949: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1640|s1'
-991866206: 6950: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3c00|s1'
-991866206: 6951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b78a0|s1'
-991866206: 6952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b78c0|s1'
-991866206: 6953: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b78e0|s1'
-991866206: 6954: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7900|s1'
-991866206: 6955: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7920|s1'
-991866206: 6956: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7940|s1'
-991866206: 6957: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7960|s1'
-991866206: 6958: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7980|s1'
-991866206: 6959: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b79a0|s1'
-991866206: 6960: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1680|s1'
-991866206: 6961: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3c80|s1'
-991866206: 6962: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b79c0|s1'
-991866206: 6963: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b79e0|s1'
-991866206: 6964: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7a00|s1'
-991866206: 6965: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7a20|s1'
-991866206: 6966: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7a40|s1'
-991866206: 6967: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7a60|s1'
-991866206: 6968: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b7a80|s1'
-991866206: 6969: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b7aa0|s1'
-991866206: 6970: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b7ac0|s1'
-991866206: 6971: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b7ae0|s1'
-991866206: 6972: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b7b00|s1'
-991866206: 6973: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7b20|s1'
-991866206: 6974: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b16c0|s1'
-991866206: 6975: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3d00|s1'
-991866206: 6976: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7b40|s1'
-991866206: 6977: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7b60|s1'
-991866206: 6978: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7b80|s1'
-991866206: 6979: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7ba0|s1'
-991866206: 6980: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7bc0|s1'
-991866206: 6981: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7be0|s1'
-991866206: 6982: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7c00|s1'
-991866206: 6983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7c20|s1'
-991866206: 6984: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7c40|s1'
-991866206: 6985: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1700|s1'
-991866206: 6986: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3d80|s1'
-991866206: 6987: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7c60|s1'
-991866206: 6988: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7c80|s1'
-991866206: 6989: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7ca0|s1'
-991866206: 6990: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7cc0|s1'
-991866206: 6991: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7ce0|s1'
-991866206: 6992: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7d00|s1'
-991866206: 6993: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b7d20|s1'
-991866206: 6994: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b7d40|s1'
-991866206: 6995: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b7d60|s1'
-991866206: 6996: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b7d80|s1'
-991866206: 6997: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b7da0|s1'
-991866206: 6998: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7dc0|s1'
-991866206: 6999: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1740|s1'
-991866206: 7000: checking heap
-991866206: 7000: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3e00|s1'
-991866206: 7001: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7de0|s1'
-991866206: 7002: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7e00|s1'
-991866206: 7003: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7e20|s1'
-991866206: 7004: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7e40|s1'
-991866206: 7005: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7e60|s1'
-991866206: 7006: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7e80|s1'
-991866206: 7007: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7ea0|s1'
-991866206: 7008: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1780|s1'
-991866206: 7009: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3e80|s1'
-991866206: 7010: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7ec0|s1'
-991866206: 7011: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7ee0|s1'
-991866206: 7012: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b7f00|s1'
-991866206: 7013: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b7f20|s1'
-991866206: 7014: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b7f40|s1'
-991866206: 7015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b7f60|s1'
-991866206: 7016: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b7f80|s1'
-991866206: 7017: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b7fa0|s1'
-991866206: 7018: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b7fc0|s1'
-991866206: 7019: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b7fe0|s1'
-991866206: 7020: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b9000|s1'
-991866206: 7021: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9020|s1'
-991866206: 7022: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b17c0|s1'
-991866206: 7023: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3f00|s1'
-991866206: 7024: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9040|s1'
-991866206: 7025: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9060|s1'
-991866206: 7026: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9080|s1'
-991866206: 7027: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b90a0|s1'
-991866206: 7028: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b90c0|s1'
-991866206: 7029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b90e0|s1'
-991866206: 7030: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9100|s1'
-991866206: 7031: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1800|s1'
-991866206: 7032: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82b3f80|s1'
-991866206: 7033: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9120|s1'
-991866206: 7034: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9140|s1'
-991866206: 7035: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9160|s1'
-991866206: 7036: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9180|s1'
-991866206: 7037: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b91a0|s1'
-991866206: 7038: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b91c0|s1'
-991866206: 7039: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b91e0|s1'
-991866206: 7040: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b9200|s1'
-991866206: 7041: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9220|s1'
-991866206: 7042: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b9240|s1'
-991866206: 7043: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9260|s1'
-991866206: 7044: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b9280|s1'
-991866206: 7045: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b92a0|s1'
-991866206: 7046: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b92c0|s1'
-991866206: 7047: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b92e0|s1'
-991866206: 7048: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9300|s1'
-991866206: 7049: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1840|s1'
-991866206: 7050: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb000|s1'
-991866206: 7051: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9320|s1'
-991866206: 7052: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9340|s1'
-991866206: 7053: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9360|s1'
-991866206: 7054: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9380|s1'
-991866206: 7055: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b93a0|s1'
-991866206: 7056: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b93c0|s1'
-991866206: 7057: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b93e0|s1'
-991866206: 7058: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9400|s1'
-991866206: 7059: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9420|s1'
-991866206: 7060: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1880|s1'
-991866206: 7061: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb080|s1'
-991866206: 7062: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9440|s1'
-991866206: 7063: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9460|s1'
-991866206: 7064: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9480|s1'
-991866206: 7065: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b94a0|s1'
-991866206: 7066: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b94c0|s1'
-991866206: 7067: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b94e0|s1'
-991866206: 7068: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9500|s1'
-991866206: 7069: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b18c0|s1'
-991866206: 7070: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb100|s1'
-991866206: 7071: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9520|s1'
-991866206: 7072: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9540|s1'
-991866206: 7073: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9560|s1'
-991866206: 7074: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9580|s1'
-991866206: 7075: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b95a0|s1'
-991866206: 7076: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b95c0|s1'
-991866206: 7077: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b95e0|s1'
-991866206: 7078: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1900|s1'
-991866206: 7079: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb180|s1'
-991866206: 7080: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9600|s1'
-991866206: 7081: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9620|s1'
-991866206: 7082: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9640|s1'
-991866206: 7083: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9660|s1'
-991866206: 7084: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9680|s1'
-991866206: 7085: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b96a0|s1'
-991866206: 7086: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b96c0|s1'
-991866206: 7087: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b96e0|s1'
-991866206: 7088: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9700|s1'
-991866206: 7089: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b9720|s1'
-991866206: 7090: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b9740|s1'
-991866206: 7091: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9760|s1'
-991866206: 7092: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1940|s1'
-991866206: 7093: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb200|s1'
-991866206: 7094: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9780|s1'
-991866206: 7095: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b97a0|s1'
-991866206: 7096: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b97c0|s1'
-991866206: 7097: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b97e0|s1'
-991866206: 7098: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9800|s1'
-991866206: 7099: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9820|s1'
-991866206: 7100: checking heap
-991866206: 7100: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9840|s1'
-991866206: 7101: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9860|s1'
-991866206: 7102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9880|s1'
-991866206: 7103: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1980|s1'
-991866206: 7104: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb280|s1'
-991866206: 7105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b98a0|s1'
-991866206: 7106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b98c0|s1'
-991866206: 7107: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b98e0|s1'
-991866206: 7108: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9900|s1'
-991866206: 7109: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9920|s1'
-991866206: 7110: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9940|s1'
-991866206: 7111: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9960|s1'
-991866206: 7112: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b19c0|s1'
-991866206: 7113: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb300|s1'
-991866206: 7114: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9980|s1'
-991866206: 7115: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b99a0|s1'
-991866206: 7116: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b99c0|s1'
-991866206: 7117: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b99e0|s1'
-991866206: 7118: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9a00|s1'
-991866206: 7119: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9a20|s1'
-991866206: 7120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9a40|s1'
-991866206: 7121: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1a00|s1'
-991866206: 7122: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb380|s1'
-991866206: 7123: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9a60|s1'
-991866206: 7124: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9a80|s1'
-991866206: 7125: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9aa0|s1'
-991866206: 7126: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9ac0|s1'
-991866206: 7127: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9ae0|s1'
-991866206: 7128: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9b00|s1'
-991866206: 7129: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b9b20|s1'
-991866206: 7130: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b9b40|s1'
-991866206: 7131: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9b60|s1'
-991866206: 7132: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b9b80|s1'
-991866206: 7133: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b9ba0|s1'
-991866206: 7134: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9bc0|s1'
-991866206: 7135: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1a40|s1'
-991866206: 7136: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb400|s1'
-991866206: 7137: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9be0|s1'
-991866206: 7138: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9c00|s1'
-991866206: 7139: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9c20|s1'
-991866206: 7140: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9c40|s1'
-991866206: 7141: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9c60|s1'
-991866206: 7142: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9c80|s1'
-991866206: 7143: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b9ca0|s1'
-991866206: 7144: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b9cc0|s1'
-991866206: 7145: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9ce0|s1'
-991866206: 7146: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b9d00|s1'
-991866206: 7147: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b9d20|s1'
-991866206: 7148: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9d40|s1'
-991866206: 7149: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1a80|s1'
-991866206: 7150: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb480|s1'
-991866206: 7151: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9d60|s1'
-991866206: 7152: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9d80|s1'
-991866206: 7153: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9da0|s1'
-991866206: 7154: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9dc0|s1'
-991866206: 7155: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9de0|s1'
-991866206: 7156: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9e00|s1'
-991866206: 7157: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b9e20|s1'
-991866206: 7158: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82b9e40|s1'
-991866206: 7159: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9e60|s1'
-991866206: 7160: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82b9e80|s1'
-991866206: 7161: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82b9ea0|s1'
-991866206: 7162: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82b9ec0|s1'
-991866206: 7163: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82b9ee0|s1'
-991866206: 7164: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82b9f00|s1'
-991866206: 7165: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9f20|s1'
-991866206: 7166: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1ac0|s1'
-991866206: 7167: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb500|s1'
-991866206: 7168: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9f40|s1'
-991866206: 7169: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9f60|s1'
-991866206: 7170: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82b9f80|s1'
-991866206: 7171: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82b9fa0|s1'
-991866206: 7172: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82b9fc0|s1'
-991866206: 7173: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82b9fe0|s1'
-991866206: 7174: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd000|s1'
-991866206: 7175: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd020|s1'
-991866206: 7176: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd040|s1'
-991866206: 7177: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1b00|s1'
-991866206: 7178: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb580|s1'
-991866206: 7179: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd060|s1'
-991866206: 7180: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd080|s1'
-991866206: 7181: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd0a0|s1'
-991866206: 7182: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd0c0|s1'
-991866206: 7183: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd0e0|s1'
-991866206: 7184: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd100|s1'
-991866206: 7185: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd120|s1'
-991866206: 7186: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1b40|s1'
-991866206: 7187: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb600|s1'
-991866206: 7188: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd140|s1'
-991866206: 7189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd160|s1'
-991866206: 7190: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd180|s1'
-991866206: 7191: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd1a0|s1'
-991866206: 7192: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd1c0|s1'
-991866206: 7193: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd1e0|s1'
-991866206: 7194: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bd200|s1'
-991866206: 7195: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bd220|s1'
-991866206: 7196: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bd240|s1'
-991866206: 7197: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bd260|s1'
-991866206: 7198: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bd280|s1'
-991866206: 7199: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd2a0|s1'
-991866206: 7200: checking heap
-991866206: 7200: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1b80|s1'
-991866206: 7201: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb680|s1'
-991866206: 7202: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd2c0|s1'
-991866206: 7203: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd2e0|s1'
-991866206: 7204: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd300|s1'
-991866206: 7205: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd320|s1'
-991866206: 7206: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd340|s1'
-991866206: 7207: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd360|s1'
-991866206: 7208: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd380|s1'
-991866206: 7209: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd3a0|s1'
-991866206: 7210: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd3c0|s1'
-991866206: 7211: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1bc0|s1'
-991866206: 7212: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb700|s1'
-991866206: 7213: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd3e0|s1'
-991866206: 7214: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd400|s1'
-991866206: 7215: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd420|s1'
-991866206: 7216: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd440|s1'
-991866206: 7217: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd460|s1'
-991866206: 7218: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd480|s1'
-991866206: 7219: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd4a0|s1'
-991866206: 7220: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1c00|s1'
-991866206: 7221: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb780|s1'
-991866206: 7222: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd4c0|s1'
-991866206: 7223: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd4e0|s1'
-991866206: 7224: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd500|s1'
-991866206: 7225: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd520|s1'
-991866206: 7226: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd540|s1'
-991866206: 7227: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd560|s1'
-991866206: 7228: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bd580|s1'
-991866206: 7229: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bd5a0|s1'
-991866206: 7230: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bd5c0|s1'
-991866206: 7231: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bd5e0|s1'
-991866206: 7232: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bd600|s1'
-991866206: 7233: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd620|s1'
-991866206: 7234: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1c40|s1'
-991866206: 7235: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb800|s1'
-991866206: 7236: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd640|s1'
-991866206: 7237: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd660|s1'
-991866206: 7238: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd680|s1'
-991866206: 7239: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd6a0|s1'
-991866206: 7240: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd6c0|s1'
-991866206: 7241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd6e0|s1'
-991866206: 7242: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd700|s1'
-991866206: 7243: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd720|s1'
-991866206: 7244: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd740|s1'
-991866206: 7245: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1c80|s1'
-991866206: 7246: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb880|s1'
-991866206: 7247: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd760|s1'
-991866206: 7248: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd780|s1'
-991866206: 7249: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd7a0|s1'
-991866206: 7250: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd7c0|s1'
-991866206: 7251: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd7e0|s1'
-991866206: 7252: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd800|s1'
-991866206: 7253: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd820|s1'
-991866206: 7254: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1cc0|s1'
-991866206: 7255: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb900|s1'
-991866206: 7256: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd840|s1'
-991866206: 7257: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd860|s1'
-991866206: 7258: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bd880|s1'
-991866206: 7259: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bd8a0|s1'
-991866206: 7260: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd8c0|s1'
-991866206: 7261: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd8e0|s1'
-991866206: 7262: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bd900|s1'
-991866206: 7263: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bd920|s1'
-991866206: 7264: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bd940|s1'
-991866206: 7265: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bd960|s1'
-991866206: 7266: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bd980|s1'
-991866206: 7267: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd9a0|s1'
-991866206: 7268: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1d00|s1'
-991866206: 7269: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bb980|s1'
-991866206: 7270: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bd9c0|s1'
-991866206: 7271: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bd9e0|s1'
-991866206: 7272: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bda00|s1'
-991866206: 7273: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bda20|s1'
-991866206: 7274: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bda40|s1'
-991866206: 7275: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bda60|s1'
-991866206: 7276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bda80|s1'
-991866206: 7277: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1d40|s1'
-991866206: 7278: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bba00|s1'
-991866206: 7279: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdaa0|s1'
-991866206: 7280: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdac0|s1'
-991866206: 7281: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bdae0|s1'
-991866206: 7282: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bdb00|s1'
-991866206: 7283: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdb20|s1'
-991866206: 7284: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdb40|s1'
-991866206: 7285: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdb60|s1'
-991866206: 7286: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1d80|s1'
-991866206: 7287: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bba80|s1'
-991866206: 7288: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdb80|s1'
-991866206: 7289: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdba0|s1'
-991866206: 7290: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bdbc0|s1'
-991866206: 7291: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bdbe0|s1'
-991866206: 7292: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdc00|s1'
-991866206: 7293: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdc20|s1'
-991866206: 7294: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bdc40|s1'
-991866206: 7295: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bdc60|s1'
-991866206: 7296: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bdc80|s1'
-991866206: 7297: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bdca0|s1'
-991866206: 7298: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bdcc0|s1'
-991866206: 7299: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdce0|s1'
-991866206: 7300: checking heap
-991866206: 7300: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1dc0|s1'
-991866206: 7301: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbb00|s1'
-991866206: 7302: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdd00|s1'
-991866206: 7303: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdd20|s1'
-991866206: 7304: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bdd40|s1'
-991866206: 7305: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bdd60|s1'
-991866206: 7306: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdd80|s1'
-991866206: 7307: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdda0|s1'
-991866206: 7308: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bddc0|s1'
-991866206: 7309: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1e00|s1'
-991866206: 7310: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbb80|s1'
-991866206: 7311: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdde0|s1'
-991866206: 7312: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bde00|s1'
-991866206: 7313: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bde20|s1'
-991866206: 7314: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bde40|s1'
-991866206: 7315: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bde60|s1'
-991866206: 7316: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bde80|s1'
-991866206: 7317: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdea0|s1'
-991866206: 7318: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1e40|s1'
-991866206: 7319: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbc00|s1'
-991866206: 7320: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdec0|s1'
-991866206: 7321: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdee0|s1'
-991866206: 7322: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bdf00|s1'
-991866206: 7323: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bdf20|s1'
-991866206: 7324: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bdf40|s1'
-991866206: 7325: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bdf60|s1'
-991866206: 7326: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bdf80|s1'
-991866206: 7327: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bdfa0|s1'
-991866206: 7328: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bdfc0|s1'
-991866206: 7329: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bdfe0|s1'
-991866206: 7330: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bf000|s1'
-991866206: 7331: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf020|s1'
-991866206: 7332: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1e80|s1'
-991866206: 7333: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbc80|s1'
-991866206: 7334: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf040|s1'
-991866206: 7335: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf060|s1'
-991866206: 7336: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf080|s1'
-991866206: 7337: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf0a0|s1'
-991866206: 7338: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf0c0|s1'
-991866206: 7339: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf0e0|s1'
-991866206: 7340: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf100|s1'
-991866206: 7341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf120|s1'
-991866206: 7342: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf140|s1'
-991866206: 7343: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1ec0|s1'
-991866206: 7344: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbd00|s1'
-991866206: 7345: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf160|s1'
-991866206: 7346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf180|s1'
-991866206: 7347: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf1a0|s1'
-991866206: 7348: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf1c0|s1'
-991866206: 7349: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf1e0|s1'
-991866206: 7350: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf200|s1'
-991866206: 7351: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf220|s1'
-991866206: 7352: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1f00|s1'
-991866206: 7353: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbd80|s1'
-991866206: 7354: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf240|s1'
-991866206: 7355: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf260|s1'
-991866206: 7356: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf280|s1'
-991866206: 7357: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf2a0|s1'
-991866206: 7358: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf2c0|s1'
-991866206: 7359: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf2e0|s1'
-991866206: 7360: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bf300|s1'
-991866206: 7361: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bf320|s1'
-991866206: 7362: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bf340|s1'
-991866206: 7363: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bf360|s1'
-991866206: 7364: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bf380|s1'
-991866206: 7365: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf3a0|s1'
-991866206: 7366: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1f40|s1'
-991866206: 7367: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbe00|s1'
-991866206: 7368: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf3c0|s1'
-991866206: 7369: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf3e0|s1'
-991866206: 7370: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf400|s1'
-991866206: 7371: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf420|s1'
-991866206: 7372: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf440|s1'
-991866206: 7373: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf460|s1'
-991866206: 7374: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf480|s1'
-991866206: 7375: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf4a0|s1'
-991866206: 7376: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf4c0|s1'
-991866206: 7377: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1f80|s1'
-991866206: 7378: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbe80|s1'
-991866206: 7379: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf4e0|s1'
-991866206: 7380: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf500|s1'
-991866206: 7381: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf520|s1'
-991866206: 7382: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf540|s1'
-991866206: 7383: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf560|s1'
-991866206: 7384: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf580|s1'
-991866206: 7385: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf5a0|s1'
-991866206: 7386: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82b1fc0|s1'
-991866206: 7387: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbf00|s1'
-991866206: 7388: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf5c0|s1'
-991866206: 7389: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf5e0|s1'
-991866206: 7390: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf600|s1'
-991866206: 7391: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf620|s1'
-991866206: 7392: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf640|s1'
-991866206: 7393: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf660|s1'
-991866206: 7394: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bf680|s1'
-991866206: 7395: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bf6a0|s1'
-991866206: 7396: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bf6c0|s1'
-991866206: 7397: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bf6e0|s1'
-991866206: 7398: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bf700|s1'
-991866206: 7399: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf720|s1'
-991866206: 7400: checking heap
-991866206: 7400: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1000|s1'
-991866206: 7401: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82bbf80|s1'
-991866206: 7402: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf740|s1'
-991866206: 7403: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf760|s1'
-991866206: 7404: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf780|s1'
-991866206: 7405: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf7a0|s1'
-991866206: 7406: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf7c0|s1'
-991866206: 7407: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf7e0|s1'
-991866206: 7408: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf800|s1'
-991866206: 7409: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf820|s1'
-991866206: 7410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf840|s1'
-991866206: 7411: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1040|s1'
-991866206: 7412: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2000|s1'
-991866206: 7413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf860|s1'
-991866206: 7414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf880|s1'
-991866206: 7415: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf8a0|s1'
-991866206: 7416: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf8c0|s1'
-991866206: 7417: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf8e0|s1'
-991866206: 7418: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf900|s1'
-991866206: 7419: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf920|s1'
-991866206: 7420: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1080|s1'
-991866206: 7421: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2080|s1'
-991866206: 7422: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf940|s1'
-991866206: 7423: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf960|s1'
-991866206: 7424: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bf980|s1'
-991866206: 7425: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bf9a0|s1'
-991866206: 7426: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bf9c0|s1'
-991866206: 7427: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bf9e0|s1'
-991866206: 7428: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bfa00|s1'
-991866206: 7429: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bfa20|s1'
-991866206: 7430: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bfa40|s1'
-991866206: 7431: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bfa60|s1'
-991866206: 7432: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bfa80|s1'
-991866206: 7433: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfaa0|s1'
-991866206: 7434: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c10c0|s1'
-991866206: 7435: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2100|s1'
-991866206: 7436: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfac0|s1'
-991866206: 7437: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfae0|s1'
-991866206: 7438: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bfb00|s1'
-991866206: 7439: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bfb20|s1'
-991866206: 7440: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfb40|s1'
-991866206: 7441: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfb60|s1'
-991866206: 7442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfb80|s1'
-991866206: 7443: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1100|s1'
-991866206: 7444: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2180|s1'
-991866206: 7445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfba0|s1'
-991866206: 7446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfbc0|s1'
-991866206: 7447: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bfbe0|s1'
-991866206: 7448: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bfc00|s1'
-991866206: 7449: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfc20|s1'
-991866206: 7450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfc40|s1'
-991866206: 7451: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bfc60|s1'
-991866206: 7452: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bfc80|s1'
-991866206: 7453: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bfca0|s1'
-991866206: 7454: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bfcc0|s1'
-991866206: 7455: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bfce0|s1'
-991866206: 7456: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfd00|s1'
-991866206: 7457: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1140|s1'
-991866206: 7458: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2200|s1'
-991866206: 7459: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfd20|s1'
-991866206: 7460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfd40|s1'
-991866206: 7461: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bfd60|s1'
-991866206: 7462: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bfd80|s1'
-991866206: 7463: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfda0|s1'
-991866206: 7464: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfdc0|s1'
-991866206: 7465: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfde0|s1'
-991866206: 7466: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1180|s1'
-991866206: 7467: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2280|s1'
-991866206: 7468: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfe00|s1'
-991866206: 7469: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfe20|s1'
-991866206: 7470: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bfe40|s1'
-991866206: 7471: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bfe60|s1'
-991866206: 7472: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bfe80|s1'
-991866206: 7473: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bfea0|s1'
-991866206: 7474: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82bfec0|s1'
-991866206: 7475: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82bfee0|s1'
-991866206: 7476: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82bff00|s1'
-991866206: 7477: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82bff20|s1'
-991866206: 7478: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82bff40|s1'
-991866206: 7479: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bff60|s1'
-991866206: 7480: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c11c0|s1'
-991866206: 7481: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2300|s1'
-991866206: 7482: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82bff80|s1'
-991866206: 7483: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82bffa0|s1'
-991866206: 7484: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82bffc0|s1'
-991866206: 7485: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82bffe0|s1'
-991866206: 7486: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4000|s1'
-991866206: 7487: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4020|s1'
-991866206: 7488: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4040|s1'
-991866206: 7489: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1200|s1'
-991866206: 7490: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2380|s1'
-991866206: 7491: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4060|s1'
-991866206: 7492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4080|s1'
-991866206: 7493: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c40a0|s1'
-991866206: 7494: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c40c0|s1'
-991866206: 7495: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c40e0|s1'
-991866206: 7496: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4100|s1'
-991866206: 7497: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c4120|s1'
-991866206: 7498: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c4140|s1'
-991866206: 7499: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c4160|s1'
-991866206: 7500: checking heap
-991866206: 7500: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c4180|s1'
-991866206: 7501: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c41a0|s1'
-991866206: 7502: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c41c0|s1'
-991866206: 7503: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1240|s1'
-991866206: 7504: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2400|s1'
-991866206: 7505: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c41e0|s1'
-991866206: 7506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4200|s1'
-991866206: 7507: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4220|s1'
-991866206: 7508: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4240|s1'
-991866206: 7509: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4260|s1'
-991866206: 7510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4280|s1'
-991866206: 7511: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c42a0|s1'
-991866206: 7512: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1280|s1'
-991866206: 7513: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2480|s1'
-991866206: 7514: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c42c0|s1'
-991866206: 7515: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c42e0|s1'
-991866206: 7516: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4300|s1'
-991866206: 7517: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4320|s1'
-991866206: 7518: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4340|s1'
-991866206: 7519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4360|s1'
-991866206: 7520: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c4380|s1'
-991866206: 7521: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c43a0|s1'
-991866206: 7522: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c43c0|s1'
-991866206: 7523: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c43e0|s1'
-991866206: 7524: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c4400|s1'
-991866206: 7525: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4420|s1'
-991866206: 7526: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c12c0|s1'
-991866206: 7527: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2500|s1'
-991866206: 7528: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4440|s1'
-991866206: 7529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4460|s1'
-991866206: 7530: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4480|s1'
-991866206: 7531: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c44a0|s1'
-991866206: 7532: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c44c0|s1'
-991866206: 7533: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c44e0|s1'
-991866206: 7534: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4500|s1'
-991866206: 7535: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1300|s1'
-991866206: 7536: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2580|s1'
-991866206: 7537: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4520|s1'
-991866206: 7538: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4540|s1'
-991866206: 7539: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4560|s1'
-991866206: 7540: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4580|s1'
-991866206: 7541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c45a0|s1'
-991866206: 7542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c45c0|s1'
-991866206: 7543: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c45e0|s1'
-991866206: 7544: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c4600|s1'
-991866206: 7545: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c4620|s1'
-991866206: 7546: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c4640|s1'
-991866206: 7547: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c4660|s1'
-991866206: 7548: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4680|s1'
-991866206: 7549: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1340|s1'
-991866206: 7550: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2600|s1'
-991866206: 7551: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c46a0|s1'
-991866206: 7552: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c46c0|s1'
-991866206: 7553: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c46e0|s1'
-991866206: 7554: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4700|s1'
-991866206: 7555: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4720|s1'
-991866206: 7556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4740|s1'
-991866206: 7557: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4760|s1'
-991866206: 7558: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1380|s1'
-991866206: 7559: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2680|s1'
-991866206: 7560: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4780|s1'
-991866206: 7561: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c47a0|s1'
-991866206: 7562: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c47c0|s1'
-991866206: 7563: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c47e0|s1'
-991866206: 7564: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4800|s1'
-991866206: 7565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4820|s1'
-991866206: 7566: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c4840|s1'
-991866206: 7567: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c4860|s1'
-991866206: 7568: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c4880|s1'
-991866206: 7569: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c48a0|s1'
-991866206: 7570: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c48c0|s1'
-991866206: 7571: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c48e0|s1'
-991866206: 7572: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c4900|s1'
-991866206: 7573: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4920|s1'
-991866206: 7574: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c13c0|s1'
-991866206: 7575: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2700|s1'
-991866206: 7576: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4940|s1'
-991866206: 7577: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4960|s1'
-991866206: 7578: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4980|s1'
-991866206: 7579: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c49a0|s1'
-991866206: 7580: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c49c0|s1'
-991866206: 7581: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c49e0|s1'
-991866206: 7582: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4a00|s1'
-991866206: 7583: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1400|s1'
-991866206: 7584: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2780|s1'
-991866206: 7585: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4a20|s1'
-991866206: 7586: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4a40|s1'
-991866206: 7587: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4a60|s1'
-991866206: 7588: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4a80|s1'
-991866206: 7589: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4aa0|s1'
-991866206: 7590: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4ac0|s1'
-991866206: 7591: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4ae0|s1'
-991866206: 7592: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1440|s1'
-991866206: 7593: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2800|s1'
-991866206: 7594: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4b00|s1'
-991866206: 7595: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4b20|s1'
-991866206: 7596: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4b40|s1'
-991866206: 7597: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4b60|s1'
-991866206: 7598: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4b80|s1'
-991866206: 7599: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4ba0|s1'
-991866206: 7600: checking heap
-991866206: 7600: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4bc0|s1'
-991866206: 7601: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1480|s1'
-991866206: 7602: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2880|s1'
-991866206: 7603: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4be0|s1'
-991866206: 7604: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4c00|s1'
-991866206: 7605: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4c20|s1'
-991866206: 7606: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4c40|s1'
-991866206: 7607: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4c60|s1'
-991866206: 7608: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4c80|s1'
-991866206: 7609: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c4ca0|s1'
-991866206: 7610: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c4cc0|s1'
-991866206: 7611: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c4ce0|s1'
-991866206: 7612: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c4d00|s1'
-991866206: 7613: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c4d20|s1'
-991866206: 7614: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4d40|s1'
-991866206: 7615: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c14c0|s1'
-991866206: 7616: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2900|s1'
-991866206: 7617: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4d60|s1'
-991866206: 7618: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4d80|s1'
-991866206: 7619: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4da0|s1'
-991866206: 7620: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4dc0|s1'
-991866206: 7621: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4de0|s1'
-991866206: 7622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4e00|s1'
-991866206: 7623: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4e20|s1'
-991866206: 7624: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1500|s1'
-991866206: 7625: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2980|s1'
-991866206: 7626: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4e40|s1'
-991866206: 7627: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4e60|s1'
-991866206: 7628: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4e80|s1'
-991866206: 7629: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4ea0|s1'
-991866206: 7630: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4ec0|s1'
-991866206: 7631: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4ee0|s1'
-991866206: 7632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4f00|s1'
-991866206: 7633: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1540|s1'
-991866206: 7634: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2a00|s1'
-991866206: 7635: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4f20|s1'
-991866206: 7636: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4f40|s1'
-991866206: 7637: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c4f60|s1'
-991866206: 7638: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c4f80|s1'
-991866206: 7639: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c4fa0|s1'
-991866206: 7640: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4fc0|s1'
-991866206: 7641: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c4fe0|s1'
-991866206: 7642: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1580|s1'
-991866206: 7643: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2a80|s1'
-991866206: 7644: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6000|s1'
-991866206: 7645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6020|s1'
-991866206: 7646: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6040|s1'
-991866206: 7647: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6060|s1'
-991866206: 7648: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6080|s1'
-991866206: 7649: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c60a0|s1'
-991866206: 7650: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c60c0|s1'
-991866206: 7651: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c60e0|s1'
-991866206: 7652: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c6100|s1'
-991866206: 7653: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c6120|s1'
-991866206: 7654: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c6140|s1'
-991866206: 7655: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6160|s1'
-991866206: 7656: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c15c0|s1'
-991866206: 7657: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2b00|s1'
-991866206: 7658: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6180|s1'
-991866206: 7659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c61a0|s1'
-991866206: 7660: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c61c0|s1'
-991866206: 7661: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c61e0|s1'
-991866206: 7662: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6200|s1'
-991866206: 7663: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6220|s1'
-991866206: 7664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6240|s1'
-991866206: 7665: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1600|s1'
-991866206: 7666: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2b80|s1'
-991866206: 7667: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6260|s1'
-991866206: 7668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6280|s1'
-991866206: 7669: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c62a0|s1'
-991866206: 7670: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c62c0|s1'
-991866206: 7671: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c62e0|s1'
-991866206: 7672: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6300|s1'
-991866206: 7673: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c6320|s1'
-991866206: 7674: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c6340|s1'
-991866206: 7675: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c6360|s1'
-991866206: 7676: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c6380|s1'
-991866206: 7677: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c63a0|s1'
-991866206: 7678: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c63c0|s1'
-991866206: 7679: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1640|s1'
-991866206: 7680: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2c00|s1'
-991866206: 7681: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c63e0|s1'
-991866206: 7682: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6400|s1'
-991866206: 7683: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6420|s1'
-991866206: 7684: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6440|s1'
-991866206: 7685: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6460|s1'
-991866206: 7686: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6480|s1'
-991866206: 7687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c64a0|s1'
-991866206: 7688: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1680|s1'
-991866206: 7689: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2c80|s1'
-991866206: 7690: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c64c0|s1'
-991866206: 7691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c64e0|s1'
-991866206: 7692: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6500|s1'
-991866206: 7693: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6520|s1'
-991866206: 7694: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6540|s1'
-991866206: 7695: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6560|s1'
-991866206: 7696: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c6580|s1'
-991866206: 7697: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c65a0|s1'
-991866206: 7698: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c65c0|s1'
-991866206: 7699: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c65e0|s1'
-991866206: 7700: checking heap
-991866206: 7700: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c6600|s1'
-991866206: 7701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6620|s1'
-991866206: 7702: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c16c0|s1'
-991866206: 7703: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2d00|s1'
-991866206: 7704: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6640|s1'
-991866206: 7705: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6660|s1'
-991866206: 7706: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6680|s1'
-991866206: 7707: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c66a0|s1'
-991866206: 7708: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c66c0|s1'
-991866206: 7709: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c66e0|s1'
-991866206: 7710: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6700|s1'
-991866206: 7711: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1700|s1'
-991866206: 7712: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2d80|s1'
-991866206: 7713: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6720|s1'
-991866206: 7714: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6740|s1'
-991866206: 7715: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6760|s1'
-991866206: 7716: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6780|s1'
-991866206: 7717: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c67a0|s1'
-991866206: 7718: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c67c0|s1'
-991866206: 7719: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c67e0|s1'
-991866206: 7720: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c6800|s1'
-991866206: 7721: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c6820|s1'
-991866206: 7722: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c6840|s1'
-991866206: 7723: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c6860|s1'
-991866206: 7724: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6880|s1'
-991866206: 7725: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1740|s1'
-991866206: 7726: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2e00|s1'
-991866206: 7727: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c68a0|s1'
-991866206: 7728: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c68c0|s1'
-991866206: 7729: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c68e0|s1'
-991866206: 7730: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6900|s1'
-991866206: 7731: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6920|s1'
-991866206: 7732: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6940|s1'
-991866206: 7733: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6960|s1'
-991866206: 7734: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1780|s1'
-991866206: 7735: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2e80|s1'
-991866206: 7736: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6980|s1'
-991866206: 7737: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c69a0|s1'
-991866206: 7738: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c69c0|s1'
-991866206: 7739: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c69e0|s1'
-991866206: 7740: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6a00|s1'
-991866206: 7741: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6a20|s1'
-991866206: 7742: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c6a40|s1'
-991866206: 7743: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c6a60|s1'
-991866206: 7744: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c6a80|s1'
-991866206: 7745: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c6aa0|s1'
-991866206: 7746: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c6ac0|s1'
-991866206: 7747: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6ae0|s1'
-991866206: 7748: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c17c0|s1'
-991866206: 7749: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2f00|s1'
-991866206: 7750: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6b00|s1'
-991866206: 7751: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6b20|s1'
-991866206: 7752: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6b40|s1'
-991866206: 7753: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6b60|s1'
-991866206: 7754: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6b80|s1'
-991866206: 7755: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6ba0|s1'
-991866206: 7756: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6bc0|s1'
-991866206: 7757: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1800|s1'
-991866206: 7758: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c2f80|s1'
-991866206: 7759: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6be0|s1'
-991866206: 7760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6c00|s1'
-991866206: 7761: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6c20|s1'
-991866206: 7762: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6c40|s1'
-991866206: 7763: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6c60|s1'
-991866206: 7764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6c80|s1'
-991866206: 7765: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c6ca0|s1'
-991866206: 7766: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c6cc0|s1'
-991866206: 7767: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c6ce0|s1'
-991866206: 7768: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c6d00|s1'
-991866206: 7769: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c6d20|s1'
-991866206: 7770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6d40|s1'
-991866206: 7771: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1840|s1'
-991866206: 7772: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8000|s1'
-991866206: 7773: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6d60|s1'
-991866206: 7774: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6d80|s1'
-991866206: 7775: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6da0|s1'
-991866206: 7776: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6dc0|s1'
-991866206: 7777: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6de0|s1'
-991866206: 7778: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6e00|s1'
-991866206: 7779: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6e20|s1'
-991866206: 7780: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1880|s1'
-991866206: 7781: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8080|s1'
-991866206: 7782: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6e40|s1'
-991866206: 7783: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6e60|s1'
-991866206: 7784: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82c6e80|s1'
-991866206: 7785: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82c6ea0|s1'
-991866206: 7786: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6ec0|s1'
-991866206: 7787: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6ee0|s1'
-991866206: 7788: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82c6f00|s1'
-991866206: 7789: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82c6f20|s1'
-991866206: 7790: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82c6f40|s1'
-991866206: 7791: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82c6f60|s1'
-991866206: 7792: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82c6f80|s1'
-991866206: 7793: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6fa0|s1'
-991866206: 7794: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c18c0|s1'
-991866206: 7795: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8100|s1'
-991866206: 7796: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82c6fc0|s1'
-991866206: 7797: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82c6fe0|s1'
-991866206: 7798: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca000|s1'
-991866206: 7799: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca020|s1'
-991866206: 7800: checking heap
-991866206: 7800: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca040|s1'
-991866206: 7801: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca060|s1'
-991866206: 7802: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca080|s1'
-991866206: 7803: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1900|s1'
-991866206: 7804: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8180|s1'
-991866206: 7805: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca0a0|s1'
-991866206: 7806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca0c0|s1'
-991866206: 7807: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca0e0|s1'
-991866206: 7808: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca100|s1'
-991866206: 7809: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca120|s1'
-991866206: 7810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca140|s1'
-991866206: 7811: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ca160|s1'
-991866206: 7812: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ca180|s1'
-991866206: 7813: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ca1a0|s1'
-991866206: 7814: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ca1c0|s1'
-991866206: 7815: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ca1e0|s1'
-991866206: 7816: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca200|s1'
-991866206: 7817: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1940|s1'
-991866206: 7818: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8200|s1'
-991866206: 7819: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca220|s1'
-991866206: 7820: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca240|s1'
-991866206: 7821: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca260|s1'
-991866206: 7822: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca280|s1'
-991866206: 7823: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca2a0|s1'
-991866206: 7824: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca2c0|s1'
-991866206: 7825: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca2e0|s1'
-991866206: 7826: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1980|s1'
-991866206: 7827: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8280|s1'
-991866206: 7828: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca300|s1'
-991866206: 7829: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca320|s1'
-991866206: 7830: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca340|s1'
-991866206: 7831: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca360|s1'
-991866206: 7832: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca380|s1'
-991866206: 7833: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca3a0|s1'
-991866206: 7834: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca3c0|s1'
-991866206: 7835: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c19c0|s1'
-991866206: 7836: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8300|s1'
-991866206: 7837: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca3e0|s1'
-991866206: 7838: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca400|s1'
-991866206: 7839: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca420|s1'
-991866206: 7840: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca440|s1'
-991866206: 7841: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca460|s1'
-991866206: 7842: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca480|s1'
-991866206: 7843: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ca4a0|s1'
-991866206: 7844: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ca4c0|s1'
-991866206: 7845: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ca4e0|s1'
-991866206: 7846: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ca500|s1'
-991866206: 7847: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ca520|s1'
-991866206: 7848: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca540|s1'
-991866206: 7849: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1a00|s1'
-991866206: 7850: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8380|s1'
-991866206: 7851: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca560|s1'
-991866206: 7852: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca580|s1'
-991866206: 7853: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca5a0|s1'
-991866206: 7854: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca5c0|s1'
-991866206: 7855: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca5e0|s1'
-991866206: 7856: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca600|s1'
-991866206: 7857: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca620|s1'
-991866206: 7858: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1a40|s1'
-991866206: 7859: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8400|s1'
-991866206: 7860: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca640|s1'
-991866206: 7861: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca660|s1'
-991866206: 7862: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca680|s1'
-991866206: 7863: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca6a0|s1'
-991866206: 7864: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca6c0|s1'
-991866206: 7865: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca6e0|s1'
-991866206: 7866: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca700|s1'
-991866206: 7867: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1a80|s1'
-991866206: 7868: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8480|s1'
-991866206: 7869: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca720|s1'
-991866206: 7870: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca740|s1'
-991866206: 7871: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca760|s1'
-991866206: 7872: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca780|s1'
-991866206: 7873: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca7a0|s1'
-991866206: 7874: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca7c0|s1'
-991866206: 7875: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ca7e0|s1'
-991866206: 7876: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ca800|s1'
-991866206: 7877: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ca820|s1'
-991866206: 7878: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ca840|s1'
-991866206: 7879: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ca860|s1'
-991866206: 7880: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca880|s1'
-991866206: 7881: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1ac0|s1'
-991866206: 7882: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8500|s1'
-991866206: 7883: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca8a0|s1'
-991866206: 7884: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca8c0|s1'
-991866206: 7885: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca8e0|s1'
-991866206: 7886: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca900|s1'
-991866206: 7887: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca920|s1'
-991866206: 7888: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca940|s1'
-991866206: 7889: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca960|s1'
-991866206: 7890: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1b00|s1'
-991866206: 7891: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8580|s1'
-991866206: 7892: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ca980|s1'
-991866206: 7893: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ca9a0|s1'
-991866206: 7894: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ca9c0|s1'
-991866206: 7895: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ca9e0|s1'
-991866206: 7896: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82caa00|s1'
-991866206: 7897: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82caa20|s1'
-991866206: 7898: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82caa40|s1'
-991866206: 7899: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1b40|s1'
-991866206: 7900: checking heap
-991866206: 7900: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8600|s1'
-991866206: 7901: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82caa60|s1'
-991866206: 7902: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82caa80|s1'
-991866206: 7903: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82caaa0|s1'
-991866206: 7904: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82caac0|s1'
-991866206: 7905: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82caae0|s1'
-991866206: 7906: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cab00|s1'
-991866206: 7907: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82cab20|s1'
-991866206: 7908: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82cab40|s1'
-991866206: 7909: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82cab60|s1'
-991866206: 7910: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82cab80|s1'
-991866206: 7911: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82caba0|s1'
-991866206: 7912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cabc0|s1'
-991866206: 7913: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1b80|s1'
-991866206: 7914: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8680|s1'
-991866206: 7915: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cabe0|s1'
-991866206: 7916: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cac00|s1'
-991866206: 7917: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cac20|s1'
-991866206: 7918: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cac40|s1'
-991866206: 7919: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cac60|s1'
-991866206: 7920: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cac80|s1'
-991866206: 7921: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82caca0|s1'
-991866206: 7922: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1bc0|s1'
-991866206: 7923: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8700|s1'
-991866206: 7924: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cacc0|s1'
-991866206: 7925: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cace0|s1'
-991866206: 7926: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cad00|s1'
-991866206: 7927: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cad20|s1'
-991866206: 7928: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cad40|s1'
-991866206: 7929: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cad60|s1'
-991866206: 7930: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cad80|s1'
-991866206: 7931: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1c00|s1'
-991866206: 7932: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8780|s1'
-991866206: 7933: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cada0|s1'
-991866206: 7934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cadc0|s1'
-991866206: 7935: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cade0|s1'
-991866206: 7936: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cae00|s1'
-991866206: 7937: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cae20|s1'
-991866206: 7938: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cae40|s1'
-991866206: 7939: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82cae60|s1'
-991866206: 7940: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82cae80|s1'
-991866206: 7941: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82caea0|s1'
-991866206: 7942: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82caec0|s1'
-991866206: 7943: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82caee0|s1'
-991866206: 7944: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82caf00|s1'
-991866206: 7945: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1c40|s1'
-991866206: 7946: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8800|s1'
-991866206: 7947: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82caf20|s1'
-991866206: 7948: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82caf40|s1'
-991866206: 7949: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82caf60|s1'
-991866206: 7950: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82caf80|s1'
-991866206: 7951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cafa0|s1'
-991866206: 7952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cafc0|s1'
-991866206: 7953: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cafe0|s1'
-991866206: 7954: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1c80|s1'
-991866206: 7955: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8880|s1'
-991866206: 7956: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc000|s1'
-991866206: 7957: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc020|s1'
-991866206: 7958: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc040|s1'
-991866206: 7959: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc060|s1'
-991866206: 7960: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc080|s1'
-991866206: 7961: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc0a0|s1'
-991866206: 7962: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc0c0|s1'
-991866206: 7963: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1cc0|s1'
-991866206: 7964: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8900|s1'
-991866206: 7965: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc0e0|s1'
-991866206: 7966: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc100|s1'
-991866206: 7967: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc120|s1'
-991866206: 7968: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc140|s1'
-991866206: 7969: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc160|s1'
-991866206: 7970: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc180|s1'
-991866206: 7971: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82cc1a0|s1'
-991866206: 7972: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82cc1c0|s1'
-991866206: 7973: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82cc1e0|s1'
-991866206: 7974: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82cc200|s1'
-991866206: 7975: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82cc220|s1'
-991866206: 7976: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc240|s1'
-991866206: 7977: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1d00|s1'
-991866206: 7978: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8980|s1'
-991866206: 7979: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc260|s1'
-991866206: 7980: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc280|s1'
-991866206: 7981: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc2a0|s1'
-991866206: 7982: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc2c0|s1'
-991866206: 7983: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc2e0|s1'
-991866206: 7984: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc300|s1'
-991866206: 7985: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc320|s1'
-991866206: 7986: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1d40|s1'
-991866206: 7987: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8a00|s1'
-991866206: 7988: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc340|s1'
-991866206: 7989: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc360|s1'
-991866206: 7990: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc380|s1'
-991866206: 7991: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc3a0|s1'
-991866206: 7992: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc3c0|s1'
-991866206: 7993: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc3e0|s1'
-991866206: 7994: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc400|s1'
-991866206: 7995: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1d80|s1'
-991866206: 7996: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8a80|s1'
-991866206: 7997: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc420|s1'
-991866206: 7998: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc440|s1'
-991866206: 7999: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc460|s1'
-991866206: 8000: checking heap
-991866206: 8000: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc480|s1'
-991866206: 8001: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc4a0|s1'
-991866206: 8002: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc4c0|s1'
-991866206: 8003: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82cc4e0|s1'
-991866206: 8004: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82cc500|s1'
-991866206: 8005: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82cc520|s1'
-991866206: 8006: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82cc540|s1'
-991866206: 8007: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82cc560|s1'
-991866206: 8008: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc580|s1'
-991866206: 8009: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1dc0|s1'
-991866206: 8010: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8b00|s1'
-991866206: 8011: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc5a0|s1'
-991866206: 8012: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc5c0|s1'
-991866206: 8013: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc5e0|s1'
-991866206: 8014: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc600|s1'
-991866206: 8015: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc620|s1'
-991866206: 8016: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc640|s1'
-991866206: 8017: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc660|s1'
-991866206: 8018: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1e00|s1'
-991866206: 8019: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8b80|s1'
-991866206: 8020: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc680|s1'
-991866206: 8021: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc6a0|s1'
-991866206: 8022: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc6c0|s1'
-991866206: 8023: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc6e0|s1'
-991866206: 8024: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc700|s1'
-991866206: 8025: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc720|s1'
-991866206: 8026: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc740|s1'
-991866206: 8027: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1e40|s1'
-991866206: 8028: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8c00|s1'
-991866206: 8029: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc760|s1'
-991866206: 8030: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc780|s1'
-991866206: 8031: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc7a0|s1'
-991866206: 8032: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc7c0|s1'
-991866206: 8033: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc7e0|s1'
-991866206: 8034: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc800|s1'
-991866206: 8035: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82cc820|s1'
-991866206: 8036: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82cc840|s1'
-991866206: 8037: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82cc860|s1'
-991866206: 8038: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82cc880|s1'
-991866206: 8039: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82cc8a0|s1'
-991866206: 8040: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc8c0|s1'
-991866206: 8041: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1e80|s1'
-991866206: 8042: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8c80|s1'
-991866206: 8043: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc8e0|s1'
-991866206: 8044: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc900|s1'
-991866206: 8045: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cc920|s1'
-991866206: 8046: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cc940|s1'
-991866206: 8047: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc960|s1'
-991866206: 8048: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc980|s1'
-991866206: 8049: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc9a0|s1'
-991866206: 8050: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1ec0|s1'
-991866206: 8051: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8d00|s1'
-991866206: 8052: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cc9c0|s1'
-991866206: 8053: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cc9e0|s1'
-991866206: 8054: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cca00|s1'
-991866206: 8055: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cca20|s1'
-991866206: 8056: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cca40|s1'
-991866206: 8057: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cca60|s1'
-991866206: 8058: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cca80|s1'
-991866206: 8059: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1f00|s1'
-991866206: 8060: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8d80|s1'
-991866206: 8061: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccaa0|s1'
-991866206: 8062: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccac0|s1'
-991866206: 8063: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ccae0|s1'
-991866206: 8064: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ccb00|s1'
-991866206: 8065: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccb20|s1'
-991866206: 8066: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccb40|s1'
-991866206: 8067: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ccb60|s1'
-991866206: 8068: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ccb80|s1'
-991866206: 8069: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ccba0|s1'
-991866206: 8070: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ccbc0|s1'
-991866206: 8071: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ccbe0|s1'
-991866206: 8072: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccc00|s1'
-991866206: 8073: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1f40|s1'
-991866206: 8074: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8e00|s1'
-991866206: 8075: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccc20|s1'
-991866206: 8076: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccc40|s1'
-991866206: 8077: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ccc60|s1'
-991866206: 8078: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ccc80|s1'
-991866206: 8079: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccca0|s1'
-991866206: 8080: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cccc0|s1'
-991866206: 8081: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccce0|s1'
-991866206: 8082: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1f80|s1'
-991866206: 8083: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8e80|s1'
-991866206: 8084: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccd00|s1'
-991866206: 8085: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccd20|s1'
-991866206: 8086: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ccd40|s1'
-991866206: 8087: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ccd60|s1'
-991866206: 8088: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccd80|s1'
-991866206: 8089: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccda0|s1'
-991866206: 8090: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccdc0|s1'
-991866206: 8091: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82c1fc0|s1'
-991866206: 8092: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8f00|s1'
-991866206: 8093: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccde0|s1'
-991866206: 8094: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cce00|s1'
-991866206: 8095: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82cce20|s1'
-991866206: 8096: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82cce40|s1'
-991866206: 8097: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82cce60|s1'
-991866206: 8098: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82cce80|s1'
-991866206: 8099: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ccea0|s1'
-991866206: 8100: checking heap
-991866206: 8100: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ccec0|s1'
-991866206: 8101: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ccee0|s1'
-991866206: 8102: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ccf00|s1'
-991866206: 8103: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ccf20|s1'
-991866206: 8104: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccf40|s1'
-991866206: 8105: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce000|s1'
-991866206: 8106: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82c8f80|s1'
-991866206: 8107: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccf60|s1'
-991866206: 8108: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ccf80|s1'
-991866206: 8109: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ccfa0|s1'
-991866206: 8110: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ccfc0|s1'
-991866206: 8111: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ccfe0|s1'
-991866206: 8112: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0000|s1'
-991866206: 8113: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d0020|s1'
-991866206: 8114: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d0040|s1'
-991866206: 8115: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d0060|s1'
-991866206: 8116: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d0080|s1'
-991866206: 8117: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d00a0|s1'
-991866206: 8118: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d00c0|s1'
-991866206: 8119: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce040|s1'
-991866206: 8120: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2000|s1'
-991866206: 8121: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d00e0|s1'
-991866206: 8122: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0100|s1'
-991866206: 8123: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0120|s1'
-991866206: 8124: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0140|s1'
-991866206: 8125: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0160|s1'
-991866206: 8126: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0180|s1'
-991866206: 8127: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d01a0|s1'
-991866206: 8128: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d01c0|s1'
-991866206: 8129: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d01e0|s1'
-991866206: 8130: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d0200|s1'
-991866206: 8131: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d0220|s1'
-991866206: 8132: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0240|s1'
-991866206: 8133: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce080|s1'
-991866206: 8134: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2080|s1'
-991866206: 8135: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0260|s1'
-991866206: 8136: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0280|s1'
-991866206: 8137: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d02a0|s1'
-991866206: 8138: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d02c0|s1'
-991866206: 8139: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d02e0|s1'
-991866206: 8140: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0300|s1'
-991866206: 8141: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0320|s1'
-991866206: 8142: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce0c0|s1'
-991866206: 8143: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2100|s1'
-991866206: 8144: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0340|s1'
-991866206: 8145: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0360|s1'
-991866206: 8146: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0380|s1'
-991866206: 8147: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d03a0|s1'
-991866206: 8148: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d03c0|s1'
-991866206: 8149: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d03e0|s1'
-991866206: 8150: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0400|s1'
-991866206: 8151: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce100|s1'
-991866206: 8152: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2180|s1'
-991866206: 8153: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0420|s1'
-991866206: 8154: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0440|s1'
-991866206: 8155: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0460|s1'
-991866206: 8156: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0480|s1'
-991866206: 8157: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d04a0|s1'
-991866206: 8158: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d04c0|s1'
-991866206: 8159: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d04e0|s1'
-991866206: 8160: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d0500|s1'
-991866206: 8161: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d0520|s1'
-991866206: 8162: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d0540|s1'
-991866206: 8163: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d0560|s1'
-991866206: 8164: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0580|s1'
-991866206: 8165: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce140|s1'
-991866206: 8166: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2200|s1'
-991866206: 8167: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d05a0|s1'
-991866206: 8168: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d05c0|s1'
-991866206: 8169: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d05e0|s1'
-991866206: 8170: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0600|s1'
-991866206: 8171: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0620|s1'
-991866206: 8172: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0640|s1'
-991866206: 8173: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0660|s1'
-991866206: 8174: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce180|s1'
-991866206: 8175: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2280|s1'
-991866206: 8176: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0680|s1'
-991866206: 8177: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d06a0|s1'
-991866206: 8178: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d06c0|s1'
-991866206: 8179: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d06e0|s1'
-991866206: 8180: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0700|s1'
-991866206: 8181: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0720|s1'
-991866206: 8182: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0740|s1'
-991866206: 8183: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce1c0|s1'
-991866206: 8184: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2300|s1'
-991866206: 8185: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0760|s1'
-991866206: 8186: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0780|s1'
-991866206: 8187: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d07a0|s1'
-991866206: 8188: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d07c0|s1'
-991866206: 8189: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d07e0|s1'
-991866206: 8190: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0800|s1'
-991866206: 8191: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d0820|s1'
-991866206: 8192: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d0840|s1'
-991866206: 8193: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d0860|s1'
-991866206: 8194: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d0880|s1'
-991866206: 8195: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d08a0|s1'
-991866206: 8196: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d08c0|s1'
-991866206: 8197: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce200|s1'
-991866206: 8198: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2380|s1'
-991866206: 8199: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d08e0|s1'
-991866206: 8200: checking heap
-991866206: 8200: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0900|s1'
-991866206: 8201: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0920|s1'
-991866206: 8202: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0940|s1'
-991866206: 8203: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0960|s1'
-991866206: 8204: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0980|s1'
-991866206: 8205: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d09a0|s1'
-991866206: 8206: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce240|s1'
-991866206: 8207: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2400|s1'
-991866206: 8208: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d09c0|s1'
-991866206: 8209: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d09e0|s1'
-991866206: 8210: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0a00|s1'
-991866206: 8211: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0a20|s1'
-991866206: 8212: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0a40|s1'
-991866206: 8213: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0a60|s1'
-991866206: 8214: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0a80|s1'
-991866206: 8215: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce280|s1'
-991866206: 8216: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2480|s1'
-991866206: 8217: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0aa0|s1'
-991866206: 8218: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0ac0|s1'
-991866206: 8219: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0ae0|s1'
-991866206: 8220: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0b00|s1'
-991866206: 8221: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0b20|s1'
-991866206: 8222: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0b40|s1'
-991866206: 8223: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d0b60|s1'
-991866206: 8224: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d0b80|s1'
-991866206: 8225: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d0ba0|s1'
-991866206: 8226: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d0bc0|s1'
-991866206: 8227: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d0be0|s1'
-991866206: 8228: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0c00|s1'
-991866206: 8229: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce2c0|s1'
-991866206: 8230: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2500|s1'
-991866206: 8231: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0c20|s1'
-991866206: 8232: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0c40|s1'
-991866206: 8233: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0c60|s1'
-991866206: 8234: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0c80|s1'
-991866206: 8235: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0ca0|s1'
-991866206: 8236: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0cc0|s1'
-991866206: 8237: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0ce0|s1'
-991866206: 8238: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce300|s1'
-991866206: 8239: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2580|s1'
-991866206: 8240: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0d00|s1'
-991866206: 8241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0d20|s1'
-991866206: 8242: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0d40|s1'
-991866206: 8243: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0d60|s1'
-991866206: 8244: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0d80|s1'
-991866206: 8245: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0da0|s1'
-991866206: 8246: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0dc0|s1'
-991866206: 8247: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce340|s1'
-991866206: 8248: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2600|s1'
-991866206: 8249: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0de0|s1'
-991866206: 8250: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0e00|s1'
-991866206: 8251: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0e20|s1'
-991866206: 8252: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0e40|s1'
-991866206: 8253: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0e60|s1'
-991866206: 8254: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0e80|s1'
-991866206: 8255: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d0ea0|s1'
-991866206: 8256: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d0ec0|s1'
-991866206: 8257: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d0ee0|s1'
-991866206: 8258: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d0f00|s1'
-991866206: 8259: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d0f20|s1'
-991866206: 8260: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0f40|s1'
-991866206: 8261: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce380|s1'
-991866206: 8262: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2680|s1'
-991866206: 8263: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0f60|s1'
-991866206: 8264: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d0f80|s1'
-991866206: 8265: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d0fa0|s1'
-991866206: 8266: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d0fc0|s1'
-991866206: 8267: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d0fe0|s1'
-991866206: 8268: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4000|s1'
-991866206: 8269: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4020|s1'
-991866206: 8270: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce3c0|s1'
-991866206: 8271: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2700|s1'
-991866206: 8272: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4040|s1'
-991866206: 8273: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4060|s1'
-991866206: 8274: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4080|s1'
-991866206: 8275: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d40a0|s1'
-991866206: 8276: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d40c0|s1'
-991866206: 8277: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d40e0|s1'
-991866206: 8278: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4100|s1'
-991866206: 8279: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce400|s1'
-991866206: 8280: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2780|s1'
-991866206: 8281: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4120|s1'
-991866206: 8282: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4140|s1'
-991866206: 8283: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4160|s1'
-991866206: 8284: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4180|s1'
-991866206: 8285: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d41a0|s1'
-991866206: 8286: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d41c0|s1'
-991866206: 8287: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d41e0|s1'
-991866206: 8288: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d4200|s1'
-991866206: 8289: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d4220|s1'
-991866206: 8290: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d4240|s1'
-991866206: 8291: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d4260|s1'
-991866206: 8292: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4280|s1'
-991866206: 8293: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce440|s1'
-991866206: 8294: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2800|s1'
-991866206: 8295: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d42a0|s1'
-991866206: 8296: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d42c0|s1'
-991866206: 8297: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d42e0|s1'
-991866206: 8298: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4300|s1'
-991866206: 8299: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4320|s1'
-991866206: 8300: checking heap
-991866206: 8300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4340|s1'
-991866206: 8301: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4360|s1'
-991866206: 8302: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce480|s1'
-991866206: 8303: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2880|s1'
-991866206: 8304: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4380|s1'
-991866206: 8305: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d43a0|s1'
-991866206: 8306: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d43c0|s1'
-991866206: 8307: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d43e0|s1'
-991866206: 8308: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4400|s1'
-991866206: 8309: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4420|s1'
-991866206: 8310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4440|s1'
-991866206: 8311: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce4c0|s1'
-991866206: 8312: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2900|s1'
-991866206: 8313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4460|s1'
-991866206: 8314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4480|s1'
-991866206: 8315: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d44a0|s1'
-991866206: 8316: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d44c0|s1'
-991866206: 8317: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d44e0|s1'
-991866206: 8318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4500|s1'
-991866206: 8319: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d4520|s1'
-991866206: 8320: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d4540|s1'
-991866206: 8321: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d4560|s1'
-991866206: 8322: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d4580|s1'
-991866206: 8323: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d45a0|s1'
-991866206: 8324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d45c0|s1'
-991866206: 8325: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce500|s1'
-991866206: 8326: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2980|s1'
-991866206: 8327: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d45e0|s1'
-991866206: 8328: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4600|s1'
-991866206: 8329: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4620|s1'
-991866206: 8330: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4640|s1'
-991866206: 8331: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4660|s1'
-991866206: 8332: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4680|s1'
-991866206: 8333: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d46a0|s1'
-991866206: 8334: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce540|s1'
-991866206: 8335: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2a00|s1'
-991866206: 8336: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d46c0|s1'
-991866206: 8337: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d46e0|s1'
-991866206: 8338: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4700|s1'
-991866206: 8339: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4720|s1'
-991866206: 8340: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4740|s1'
-991866206: 8341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4760|s1'
-991866206: 8342: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4780|s1'
-991866206: 8343: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce580|s1'
-991866206: 8344: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2a80|s1'
-991866206: 8345: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d47a0|s1'
-991866206: 8346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d47c0|s1'
-991866206: 8347: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d47e0|s1'
-991866206: 8348: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4800|s1'
-991866206: 8349: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4820|s1'
-991866206: 8350: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4840|s1'
-991866206: 8351: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d4860|s1'
-991866206: 8352: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d4880|s1'
-991866206: 8353: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d48a0|s1'
-991866206: 8354: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d48c0|s1'
-991866206: 8355: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d48e0|s1'
-991866206: 8356: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4900|s1'
-991866206: 8357: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce5c0|s1'
-991866206: 8358: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2b00|s1'
-991866206: 8359: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4920|s1'
-991866206: 8360: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4940|s1'
-991866206: 8361: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4960|s1'
-991866206: 8362: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4980|s1'
-991866206: 8363: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d49a0|s1'
-991866206: 8364: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d49c0|s1'
-991866206: 8365: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d49e0|s1'
-991866206: 8366: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce600|s1'
-991866206: 8367: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2b80|s1'
-991866206: 8368: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4a00|s1'
-991866206: 8369: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4a20|s1'
-991866206: 8370: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4a40|s1'
-991866206: 8371: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4a60|s1'
-991866206: 8372: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4a80|s1'
-991866206: 8373: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4aa0|s1'
-991866206: 8374: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4ac0|s1'
-991866206: 8375: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce640|s1'
-991866206: 8376: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2c00|s1'
-991866206: 8377: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4ae0|s1'
-991866206: 8378: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4b00|s1'
-991866206: 8379: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4b20|s1'
-991866206: 8380: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4b40|s1'
-991866206: 8381: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4b60|s1'
-991866206: 8382: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4b80|s1'
-991866206: 8383: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d4ba0|s1'
-991866206: 8384: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d4bc0|s1'
-991866206: 8385: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d4be0|s1'
-991866206: 8386: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d4c00|s1'
-991866206: 8387: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d4c20|s1'
-991866206: 8388: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4c40|s1'
-991866206: 8389: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce680|s1'
-991866206: 8390: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2c80|s1'
-991866206: 8391: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4c60|s1'
-991866206: 8392: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4c80|s1'
-991866206: 8393: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4ca0|s1'
-991866206: 8394: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4cc0|s1'
-991866206: 8395: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4ce0|s1'
-991866206: 8396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4d00|s1'
-991866206: 8397: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4d20|s1'
-991866206: 8398: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce6c0|s1'
-991866206: 8399: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2d00|s1'
-991866206: 8400: checking heap
-991866206: 8400: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4d40|s1'
-991866206: 8401: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4d60|s1'
-991866206: 8402: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4d80|s1'
-991866206: 8403: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4da0|s1'
-991866206: 8404: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4dc0|s1'
-991866206: 8405: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4de0|s1'
-991866206: 8406: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4e00|s1'
-991866206: 8407: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce700|s1'
-991866206: 8408: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2d80|s1'
-991866206: 8409: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4e20|s1'
-991866206: 8410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4e40|s1'
-991866206: 8411: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4e60|s1'
-991866206: 8412: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d4e80|s1'
-991866206: 8413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4ea0|s1'
-991866206: 8414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4ec0|s1'
-991866206: 8415: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d4ee0|s1'
-991866206: 8416: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d4f00|s1'
-991866206: 8417: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d4f20|s1'
-991866206: 8418: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d4f40|s1'
-991866206: 8419: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d4f60|s1'
-991866206: 8420: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4f80|s1'
-991866206: 8421: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce740|s1'
-991866206: 8422: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2e00|s1'
-991866206: 8423: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d4fa0|s1'
-991866206: 8424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d4fc0|s1'
-991866206: 8425: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d4fe0|s1'
-991866206: 8426: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6000|s1'
-991866206: 8427: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6020|s1'
-991866206: 8428: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6040|s1'
-991866206: 8429: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6060|s1'
-991866206: 8430: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce780|s1'
-991866206: 8431: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2e80|s1'
-991866206: 8432: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6080|s1'
-991866206: 8433: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d60a0|s1'
-991866206: 8434: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d60c0|s1'
-991866206: 8435: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d60e0|s1'
-991866206: 8436: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6100|s1'
-991866206: 8437: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6120|s1'
-991866206: 8438: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6140|s1'
-991866206: 8439: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce7c0|s1'
-991866206: 8440: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2f00|s1'
-991866206: 8441: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6160|s1'
-991866206: 8442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6180|s1'
-991866206: 8443: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d61a0|s1'
-991866206: 8444: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d61c0|s1'
-991866206: 8445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d61e0|s1'
-991866206: 8446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6200|s1'
-991866206: 8447: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d6220|s1'
-991866206: 8448: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d6240|s1'
-991866206: 8449: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d6260|s1'
-991866206: 8450: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d6280|s1'
-991866206: 8451: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d62a0|s1'
-991866206: 8452: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d62c0|s1'
-991866206: 8453: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce800|s1'
-991866206: 8454: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d2f80|s1'
-991866206: 8455: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d62e0|s1'
-991866206: 8456: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6300|s1'
-991866206: 8457: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6320|s1'
-991866206: 8458: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6340|s1'
-991866206: 8459: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6360|s1'
-991866206: 8460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6380|s1'
-991866206: 8461: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d63a0|s1'
-991866206: 8462: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce840|s1'
-991866206: 8463: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8000|s1'
-991866206: 8464: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d63c0|s1'
-991866206: 8465: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d63e0|s1'
-991866206: 8466: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6400|s1'
-991866206: 8467: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6420|s1'
-991866206: 8468: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6440|s1'
-991866206: 8469: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6460|s1'
-991866206: 8470: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6480|s1'
-991866206: 8471: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce880|s1'
-991866206: 8472: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8080|s1'
-991866206: 8473: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d64a0|s1'
-991866206: 8474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d64c0|s1'
-991866206: 8475: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d64e0|s1'
-991866206: 8476: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6500|s1'
-991866206: 8477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6520|s1'
-991866206: 8478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6540|s1'
-991866206: 8479: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d6560|s1'
-991866206: 8480: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d6580|s1'
-991866206: 8481: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d65a0|s1'
-991866206: 8482: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d65c0|s1'
-991866206: 8483: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d65e0|s1'
-991866206: 8484: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6600|s1'
-991866206: 8485: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce8c0|s1'
-991866206: 8486: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8100|s1'
-991866206: 8487: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6620|s1'
-991866206: 8488: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6640|s1'
-991866206: 8489: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6660|s1'
-991866206: 8490: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6680|s1'
-991866206: 8491: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d66a0|s1'
-991866206: 8492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d66c0|s1'
-991866206: 8493: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d66e0|s1'
-991866206: 8494: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce900|s1'
-991866206: 8495: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8180|s1'
-991866206: 8496: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6700|s1'
-991866206: 8497: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6720|s1'
-991866206: 8498: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6740|s1'
-991866206: 8499: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6760|s1'
-991866206: 8500: checking heap
-991866206: 8500: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6780|s1'
-991866206: 8501: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d67a0|s1'
-991866206: 8502: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d67c0|s1'
-991866206: 8503: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce940|s1'
-991866206: 8504: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8200|s1'
-991866206: 8505: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d67e0|s1'
-991866206: 8506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6800|s1'
-991866206: 8507: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6820|s1'
-991866206: 8508: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6840|s1'
-991866206: 8509: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6860|s1'
-991866206: 8510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6880|s1'
-991866206: 8511: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d68a0|s1'
-991866206: 8512: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d68c0|s1'
-991866206: 8513: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d68e0|s1'
-991866206: 8514: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d6900|s1'
-991866206: 8515: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d6920|s1'
-991866206: 8516: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6940|s1'
-991866206: 8517: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce980|s1'
-991866206: 8518: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8280|s1'
-991866206: 8519: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6960|s1'
-991866206: 8520: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6980|s1'
-991866206: 8521: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d69a0|s1'
-991866206: 8522: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d69c0|s1'
-991866206: 8523: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d69e0|s1'
-991866206: 8524: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6a00|s1'
-991866206: 8525: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6a20|s1'
-991866206: 8526: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ce9c0|s1'
-991866206: 8527: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8300|s1'
-991866206: 8528: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6a40|s1'
-991866206: 8529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6a60|s1'
-991866206: 8530: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6a80|s1'
-991866206: 8531: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6aa0|s1'
-991866206: 8532: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6ac0|s1'
-991866206: 8533: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6ae0|s1'
-991866206: 8534: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6b00|s1'
-991866206: 8535: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cea00|s1'
-991866206: 8536: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8380|s1'
-991866206: 8537: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6b20|s1'
-991866206: 8538: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6b40|s1'
-991866206: 8539: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6b60|s1'
-991866206: 8540: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6b80|s1'
-991866206: 8541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6ba0|s1'
-991866206: 8542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6bc0|s1'
-991866206: 8543: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d6be0|s1'
-991866206: 8544: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d6c00|s1'
-991866206: 8545: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d6c20|s1'
-991866206: 8546: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d6c40|s1'
-991866206: 8547: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d6c60|s1'
-991866206: 8548: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6c80|s1'
-991866206: 8549: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cea40|s1'
-991866206: 8550: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8400|s1'
-991866206: 8551: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6ca0|s1'
-991866206: 8552: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6cc0|s1'
-991866206: 8553: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6ce0|s1'
-991866206: 8554: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6d00|s1'
-991866206: 8555: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6d20|s1'
-991866206: 8556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6d40|s1'
-991866206: 8557: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6d60|s1'
-991866206: 8558: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cea80|s1'
-991866206: 8559: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8480|s1'
-991866206: 8560: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6d80|s1'
-991866206: 8561: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6da0|s1'
-991866206: 8562: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6dc0|s1'
-991866206: 8563: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6de0|s1'
-991866206: 8564: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6e00|s1'
-991866206: 8565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6e20|s1'
-991866206: 8566: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6e40|s1'
-991866206: 8567: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ceac0|s1'
-991866206: 8568: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8500|s1'
-991866206: 8569: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6e60|s1'
-991866206: 8570: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6e80|s1'
-991866206: 8571: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82d6ea0|s1'
-991866206: 8572: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82d6ec0|s1'
-991866206: 8573: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6ee0|s1'
-991866206: 8574: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6f00|s1'
-991866206: 8575: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82d6f20|s1'
-991866206: 8576: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82d6f40|s1'
-991866206: 8577: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82d6f60|s1'
-991866206: 8578: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82d6f80|s1'
-991866206: 8579: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82d6fa0|s1'
-991866206: 8580: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82d6fc0|s1'
-991866206: 8581: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ceb00|s1'
-991866206: 8582: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8580|s1'
-991866206: 8583: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82d6fe0|s1'
-991866206: 8584: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da000|s1'
-991866206: 8585: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82da020|s1'
-991866206: 8586: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82da040|s1'
-991866206: 8587: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da060|s1'
-991866206: 8588: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da080|s1'
-991866206: 8589: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da0a0|s1'
-991866206: 8590: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82da0c0|s1'
-991866206: 8591: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da0e0|s1'
-991866206: 8592: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82da100|s1'
-991866206: 8593: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82da120|s1'
-991866206: 8594: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da140|s1'
-991866206: 8595: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ceb40|s1'
-991866206: 8596: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8600|s1'
-991866206: 8597: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da160|s1'
-991866206: 8598: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da180|s1'
-991866206: 8599: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82da1a0|s1'
-991866206: 8600: checking heap
-991866206: 8600: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82da1c0|s1'
-991866206: 8601: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da1e0|s1'
-991866206: 8602: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da200|s1'
-991866206: 8603: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da220|s1'
-991866206: 8604: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82da240|s1'
-991866206: 8605: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da260|s1'
-991866206: 8606: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82da280|s1'
-991866206: 8607: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82da2a0|s1'
-991866206: 8608: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da2c0|s1'
-991866206: 8609: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ceb80|s1'
-991866206: 8610: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8680|s1'
-991866206: 8611: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da2e0|s1'
-991866206: 8612: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da300|s1'
-991866206: 8613: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82da320|s1'
-991866206: 8614: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82da340|s1'
-991866206: 8615: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da360|s1'
-991866206: 8616: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da380|s1'
-991866206: 8617: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da3a0|s1'
-991866206: 8618: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82da3c0|s1'
-991866206: 8619: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da3e0|s1'
-991866206: 8620: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82da400|s1'
-991866206: 8621: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82da420|s1'
-991866206: 8622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da440|s1'
-991866206: 8623: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cebc0|s1'
-991866206: 8624: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8700|s1'
-991866206: 8625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da460|s1'
-991866206: 8626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da480|s1'
-991866206: 8627: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82da4a0|s1'
-991866206: 8628: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82da4c0|s1'
-991866206: 8629: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da4e0|s1'
-991866206: 8630: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da500|s1'
-991866206: 8631: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da520|s1'
-991866206: 8632: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82da540|s1'
-991866206: 8633: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da560|s1'
-991866206: 8634: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da580|s1'
-991866206: 8635: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da5a0|s1'
-991866206: 8636: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da5c0|s1'
-991866206: 8637: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da5e0|s1'
-991866206: 8638: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da600|s1'
-991866206: 8639: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82da620|s1'
-991866206: 8640: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da640|s1'
-991866206: 8641: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82da660|s1'
-991866206: 8642: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82da680|s1'
-991866206: 8643: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da6a0|s1'
-991866206: 8644: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cec00|s1'
-991866206: 8645: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8780|s1'
-991866206: 8646: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da6c0|s1'
-991866206: 8647: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da6e0|s1'
-991866206: 8648: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82da700|s1'
-991866206: 8649: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82da720|s1'
-991866206: 8650: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da740|s1'
-991866206: 8651: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da760|s1'
-991866206: 8652: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da780|s1'
-991866206: 8653: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82da7a0|s1'
-991866206: 8654: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da7c0|s1'
-991866206: 8655: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82da7e0|s1'
-991866206: 8656: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82da800|s1'
-991866206: 8657: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da820|s1'
-991866206: 8658: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cec40|s1'
-991866206: 8659: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8800|s1'
-991866206: 8660: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da840|s1'
-991866206: 8661: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da860|s1'
-991866206: 8662: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82da880|s1'
-991866206: 8663: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82da8a0|s1'
-991866206: 8664: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da8c0|s1'
-991866206: 8665: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da8e0|s1'
-991866206: 8666: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82da900|s1'
-991866206: 8667: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82da920|s1'
-991866206: 8668: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82da940|s1'
-991866206: 8669: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82da960|s1'
-991866206: 8670: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82da980|s1'
-991866206: 8671: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da9a0|s1'
-991866206: 8672: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cec80|s1'
-991866206: 8673: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8880|s1'
-991866206: 8674: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82da9c0|s1'
-991866206: 8675: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82da9e0|s1'
-991866206: 8676: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82daa00|s1'
-991866206: 8677: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82daa20|s1'
-991866206: 8678: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82daa40|s1'
-991866206: 8679: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82daa60|s1'
-991866206: 8680: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82daa80|s1'
-991866206: 8681: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82daaa0|s1'
-991866206: 8682: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82daac0|s1'
-991866206: 8683: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82daae0|s1'
-991866206: 8684: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dab00|s1'
-991866206: 8685: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dab20|s1'
-991866206: 8686: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cecc0|s1'
-991866206: 8687: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8900|s1'
-991866206: 8688: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dab40|s1'
-991866206: 8689: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dab60|s1'
-991866206: 8690: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dab80|s1'
-991866206: 8691: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82daba0|s1'
-991866206: 8692: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dabc0|s1'
-991866206: 8693: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dabe0|s1'
-991866206: 8694: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dac00|s1'
-991866206: 8695: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dac20|s1'
-991866206: 8696: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dac40|s1'
-991866206: 8697: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dac60|s1'
-991866206: 8698: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dac80|s1'
-991866206: 8699: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82daca0|s1'
-991866206: 8700: checking heap
-991866206: 8700: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ced00|s1'
-991866206: 8701: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8980|s1'
-991866206: 8702: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dacc0|s1'
-991866206: 8703: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dace0|s1'
-991866206: 8704: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dad00|s1'
-991866206: 8705: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dad20|s1'
-991866206: 8706: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dad40|s1'
-991866206: 8707: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dad60|s1'
-991866206: 8708: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dad80|s1'
-991866206: 8709: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dada0|s1'
-991866206: 8710: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dadc0|s1'
-991866206: 8711: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dade0|s1'
-991866206: 8712: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dae00|s1'
-991866206: 8713: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dae20|s1'
-991866206: 8714: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ced40|s1'
-991866206: 8715: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8a00|s1'
-991866206: 8716: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dae40|s1'
-991866206: 8717: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dae60|s1'
-991866206: 8718: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dae80|s1'
-991866206: 8719: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82daea0|s1'
-991866206: 8720: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82daec0|s1'
-991866206: 8721: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82daee0|s1'
-991866206: 8722: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82daf00|s1'
-991866206: 8723: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82daf20|s1'
-991866206: 8724: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82daf40|s1'
-991866206: 8725: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82daf60|s1'
-991866206: 8726: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82daf80|s1'
-991866206: 8727: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dafa0|s1'
-991866206: 8728: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ced80|s1'
-991866206: 8729: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8a80|s1'
-991866206: 8730: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dafc0|s1'
-991866206: 8731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dafe0|s1'
-991866206: 8732: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc000|s1'
-991866206: 8733: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc020|s1'
-991866206: 8734: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc040|s1'
-991866206: 8735: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc060|s1'
-991866206: 8736: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dc080|s1'
-991866206: 8737: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dc0a0|s1'
-991866206: 8738: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dc0c0|s1'
-991866206: 8739: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dc0e0|s1'
-991866206: 8740: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dc100|s1'
-991866206: 8741: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc120|s1'
-991866206: 8742: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cedc0|s1'
-991866206: 8743: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8b00|s1'
-991866206: 8744: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc140|s1'
-991866206: 8745: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc160|s1'
-991866206: 8746: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc180|s1'
-991866206: 8747: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc1a0|s1'
-991866206: 8748: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc1c0|s1'
-991866206: 8749: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc1e0|s1'
-991866206: 8750: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dc200|s1'
-991866206: 8751: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dc220|s1'
-991866206: 8752: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dc240|s1'
-991866206: 8753: *** alloc: at 'cttable.i:561' for 3072 bytes, got '0x82dd000|s1'
-991866206: 8754: *** free: at 'cttable.i:575' pnt '0x8228800|s4': size 2048, alloced at 'cttable.i:561'
-991866206: 8755: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dc260|s1'
-991866206: 8756: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dc280|s1'
-991866206: 8757: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc2a0|s1'
-991866206: 8758: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cee00|s1'
-991866206: 8759: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8b80|s1'
-991866206: 8760: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc2c0|s1'
-991866206: 8761: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc2e0|s1'
-991866206: 8762: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc300|s1'
-991866206: 8763: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc320|s1'
-991866206: 8764: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc340|s1'
-991866206: 8765: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc360|s1'
-991866206: 8766: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dc380|s1'
-991866206: 8767: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dc3a0|s1'
-991866206: 8768: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dc3c0|s1'
-991866206: 8769: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dc3e0|s1'
-991866206: 8770: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dc400|s1'
-991866206: 8771: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc420|s1'
-991866206: 8772: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cee40|s1'
-991866206: 8773: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8c00|s1'
-991866206: 8774: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc440|s1'
-991866206: 8775: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc460|s1'
-991866206: 8776: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc480|s1'
-991866206: 8777: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc4a0|s1'
-991866206: 8778: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc4c0|s1'
-991866206: 8779: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc4e0|s1'
-991866206: 8780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc500|s1'
-991866206: 8781: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cee80|s1'
-991866206: 8782: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8c80|s1'
-991866206: 8783: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc520|s1'
-991866206: 8784: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc540|s1'
-991866206: 8785: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc560|s1'
-991866206: 8786: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc580|s1'
-991866206: 8787: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc5a0|s1'
-991866206: 8788: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc5c0|s1'
-991866206: 8789: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dc5e0|s1'
-991866206: 8790: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dc600|s1'
-991866206: 8791: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dc620|s1'
-991866206: 8792: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dc640|s1'
-991866206: 8793: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dc660|s1'
-991866206: 8794: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc680|s1'
-991866206: 8795: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82ceec0|s1'
-991866206: 8796: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8d00|s1'
-991866206: 8797: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc6a0|s1'
-991866206: 8798: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc6c0|s1'
-991866206: 8799: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc6e0|s1'
-991866206: 8800: checking heap
-991866206: 8800: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc700|s1'
-991866206: 8801: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc720|s1'
-991866206: 8802: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc740|s1'
-991866206: 8803: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc760|s1'
-991866206: 8804: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cef00|s1'
-991866206: 8805: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8d80|s1'
-991866206: 8806: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc780|s1'
-991866206: 8807: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc7a0|s1'
-991866206: 8808: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc7c0|s1'
-991866206: 8809: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc7e0|s1'
-991866206: 8810: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc800|s1'
-991866206: 8811: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc820|s1'
-991866206: 8812: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dc840|s1'
-991866206: 8813: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dc860|s1'
-991866206: 8814: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dc880|s1'
-991866206: 8815: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dc8a0|s1'
-991866206: 8816: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dc8c0|s1'
-991866206: 8817: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc8e0|s1'
-991866206: 8818: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cef40|s1'
-991866206: 8819: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8e00|s1'
-991866206: 8820: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc900|s1'
-991866206: 8821: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc920|s1'
-991866206: 8822: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dc940|s1'
-991866206: 8823: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dc960|s1'
-991866206: 8824: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc980|s1'
-991866206: 8825: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc9a0|s1'
-991866206: 8826: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dc9c0|s1'
-991866206: 8827: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cef80|s1'
-991866206: 8828: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8e80|s1'
-991866206: 8829: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dc9e0|s1'
-991866206: 8830: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dca00|s1'
-991866206: 8831: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dca20|s1'
-991866206: 8832: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dca40|s1'
-991866206: 8833: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dca60|s1'
-991866206: 8834: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dca80|s1'
-991866206: 8835: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dcaa0|s1'
-991866206: 8836: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dcac0|s1'
-991866206: 8837: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dcae0|s1'
-991866206: 8838: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dcb00|s1'
-991866206: 8839: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dcb20|s1'
-991866206: 8840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcb40|s1'
-991866206: 8841: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82cefc0|s1'
-991866206: 8842: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8f00|s1'
-991866206: 8843: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dcb60|s1'
-991866206: 8844: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcb80|s1'
-991866206: 8845: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dcba0|s1'
-991866206: 8846: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dcbc0|s1'
-991866206: 8847: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dcbe0|s1'
-991866206: 8848: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcc00|s1'
-991866206: 8849: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dcc20|s1'
-991866206: 8850: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dcc40|s1'
-991866206: 8851: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dcc60|s1'
-991866206: 8852: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dcc80|s1'
-991866206: 8853: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dcca0|s1'
-991866206: 8854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dccc0|s1'
-991866206: 8855: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df000|s1'
-991866206: 8856: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82d8f80|s1'
-991866206: 8857: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dcce0|s1'
-991866206: 8858: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcd00|s1'
-991866206: 8859: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dcd20|s1'
-991866206: 8860: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dcd40|s1'
-991866206: 8861: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dcd60|s1'
-991866206: 8862: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcd80|s1'
-991866206: 8863: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dcda0|s1'
-991866206: 8864: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dcdc0|s1'
-991866206: 8865: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dcde0|s1'
-991866206: 8866: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dce00|s1'
-991866206: 8867: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dce20|s1'
-991866206: 8868: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dce40|s1'
-991866206: 8869: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df040|s1'
-991866206: 8870: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0000|s1'
-991866206: 8871: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dce60|s1'
-991866206: 8872: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dce80|s1'
-991866206: 8873: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82dcea0|s1'
-991866206: 8874: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82dcec0|s1'
-991866206: 8875: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dcee0|s1'
-991866206: 8876: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcf00|s1'
-991866206: 8877: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82dcf20|s1'
-991866206: 8878: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82dcf40|s1'
-991866206: 8879: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82dcf60|s1'
-991866206: 8880: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82dcf80|s1'
-991866206: 8881: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82dcfa0|s1'
-991866206: 8882: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82dcfc0|s1'
-991866206: 8883: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df080|s1'
-991866206: 8884: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0080|s1'
-991866206: 8885: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82dcfe0|s1'
-991866206: 8886: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2000|s1'
-991866206: 8887: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2020|s1'
-991866206: 8888: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2040|s1'
-991866206: 8889: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2060|s1'
-991866206: 8890: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2080|s1'
-991866206: 8891: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e20a0|s1'
-991866206: 8892: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e20c0|s1'
-991866206: 8893: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e20e0|s1'
-991866206: 8894: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2100|s1'
-991866206: 8895: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2120|s1'
-991866206: 8896: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2140|s1'
-991866206: 8897: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df0c0|s1'
-991866206: 8898: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0100|s1'
-991866206: 8899: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2160|s1'
-991866206: 8900: checking heap
-991866206: 8900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2180|s1'
-991866206: 8901: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e21a0|s1'
-991866206: 8902: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e21c0|s1'
-991866206: 8903: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e21e0|s1'
-991866206: 8904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2200|s1'
-991866206: 8905: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2220|s1'
-991866206: 8906: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2240|s1'
-991866206: 8907: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2260|s1'
-991866206: 8908: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2280|s1'
-991866206: 8909: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82e22a0|s1'
-991866206: 8910: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e22c0|s1'
-991866206: 8911: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e22e0|s1'
-991866206: 8912: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2300|s1'
-991866206: 8913: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2320|s1'
-991866206: 8914: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df100|s1'
-991866206: 8915: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0180|s1'
-991866206: 8916: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2340|s1'
-991866206: 8917: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2360|s1'
-991866206: 8918: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2380|s1'
-991866206: 8919: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e23a0|s1'
-991866206: 8920: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e23c0|s1'
-991866206: 8921: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e23e0|s1'
-991866206: 8922: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2400|s1'
-991866206: 8923: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2420|s1'
-991866206: 8924: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2440|s1'
-991866206: 8925: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2460|s1'
-991866206: 8926: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2480|s1'
-991866206: 8927: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e24a0|s1'
-991866206: 8928: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df140|s1'
-991866206: 8929: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0200|s1'
-991866206: 8930: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e24c0|s1'
-991866206: 8931: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e24e0|s1'
-991866206: 8932: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2500|s1'
-991866206: 8933: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2520|s1'
-991866206: 8934: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2540|s1'
-991866206: 8935: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2560|s1'
-991866206: 8936: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2580|s1'
-991866206: 8937: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e25a0|s1'
-991866206: 8938: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e25c0|s1'
-991866206: 8939: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e25e0|s1'
-991866206: 8940: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2600|s1'
-991866206: 8941: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2620|s1'
-991866206: 8942: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df180|s1'
-991866206: 8943: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0280|s1'
-991866206: 8944: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2640|s1'
-991866206: 8945: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2660|s1'
-991866206: 8946: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2680|s1'
-991866206: 8947: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e26a0|s1'
-991866206: 8948: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e26c0|s1'
-991866206: 8949: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e26e0|s1'
-991866206: 8950: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2700|s1'
-991866206: 8951: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2720|s1'
-991866206: 8952: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2740|s1'
-991866206: 8953: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2760|s1'
-991866206: 8954: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2780|s1'
-991866206: 8955: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e27a0|s1'
-991866206: 8956: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df1c0|s1'
-991866206: 8957: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0300|s1'
-991866206: 8958: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e27c0|s1'
-991866206: 8959: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e27e0|s1'
-991866206: 8960: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2800|s1'
-991866206: 8961: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2820|s1'
-991866206: 8962: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2840|s1'
-991866206: 8963: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2860|s1'
-991866206: 8964: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2880|s1'
-991866206: 8965: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e28a0|s1'
-991866206: 8966: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e28c0|s1'
-991866206: 8967: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e28e0|s1'
-991866206: 8968: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2900|s1'
-991866206: 8969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2920|s1'
-991866206: 8970: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df200|s1'
-991866206: 8971: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0380|s1'
-991866206: 8972: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2940|s1'
-991866206: 8973: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2960|s1'
-991866206: 8974: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2980|s1'
-991866206: 8975: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e29a0|s1'
-991866206: 8976: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e29c0|s1'
-991866206: 8977: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e29e0|s1'
-991866206: 8978: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2a00|s1'
-991866206: 8979: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2a20|s1'
-991866206: 8980: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2a40|s1'
-991866206: 8981: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2a60|s1'
-991866206: 8982: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2a80|s1'
-991866206: 8983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2aa0|s1'
-991866206: 8984: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df240|s1'
-991866206: 8985: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0400|s1'
-991866206: 8986: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2ac0|s1'
-991866206: 8987: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2ae0|s1'
-991866206: 8988: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2b00|s1'
-991866206: 8989: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2b20|s1'
-991866206: 8990: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2b40|s1'
-991866206: 8991: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2b60|s1'
-991866206: 8992: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2b80|s1'
-991866206: 8993: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2ba0|s1'
-991866206: 8994: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2bc0|s1'
-991866206: 8995: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2be0|s1'
-991866206: 8996: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2c00|s1'
-991866206: 8997: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2c20|s1'
-991866206: 8998: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df280|s1'
-991866206: 8999: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0480|s1'
-991866206: 9000: checking heap
-991866206: 9000: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2c40|s1'
-991866206: 9001: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2c60|s1'
-991866206: 9002: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2c80|s1'
-991866206: 9003: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2ca0|s1'
-991866206: 9004: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2cc0|s1'
-991866206: 9005: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2ce0|s1'
-991866206: 9006: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2d00|s1'
-991866206: 9007: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2d20|s1'
-991866206: 9008: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2d40|s1'
-991866206: 9009: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2d60|s1'
-991866206: 9010: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2d80|s1'
-991866206: 9011: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2da0|s1'
-991866206: 9012: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df2c0|s1'
-991866206: 9013: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0500|s1'
-991866206: 9014: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2dc0|s1'
-991866206: 9015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2de0|s1'
-991866206: 9016: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2e00|s1'
-991866206: 9017: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2e20|s1'
-991866206: 9018: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2e40|s1'
-991866206: 9019: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2e60|s1'
-991866206: 9020: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e2e80|s1'
-991866206: 9021: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e2ea0|s1'
-991866206: 9022: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e2ec0|s1'
-991866206: 9023: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e2ee0|s1'
-991866206: 9024: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e2f00|s1'
-991866206: 9025: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2f20|s1'
-991866206: 9026: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df300|s1'
-991866206: 9027: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0580|s1'
-991866206: 9028: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2f40|s1'
-991866206: 9029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2f60|s1'
-991866206: 9030: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e2f80|s1'
-991866206: 9031: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e2fa0|s1'
-991866206: 9032: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e2fc0|s1'
-991866206: 9033: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e2fe0|s1'
-991866206: 9034: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4000|s1'
-991866206: 9035: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4020|s1'
-991866206: 9036: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4040|s1'
-991866206: 9037: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4060|s1'
-991866206: 9038: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4080|s1'
-991866206: 9039: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e40a0|s1'
-991866206: 9040: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df340|s1'
-991866206: 9041: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0600|s1'
-991866206: 9042: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e40c0|s1'
-991866206: 9043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e40e0|s1'
-991866206: 9044: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4100|s1'
-991866206: 9045: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4120|s1'
-991866206: 9046: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4140|s1'
-991866206: 9047: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4160|s1'
-991866206: 9048: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4180|s1'
-991866206: 9049: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e41a0|s1'
-991866206: 9050: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e41c0|s1'
-991866206: 9051: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e41e0|s1'
-991866206: 9052: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4200|s1'
-991866206: 9053: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4220|s1'
-991866206: 9054: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df380|s1'
-991866206: 9055: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0680|s1'
-991866206: 9056: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4240|s1'
-991866206: 9057: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4260|s1'
-991866206: 9058: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4280|s1'
-991866206: 9059: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e42a0|s1'
-991866206: 9060: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e42c0|s1'
-991866206: 9061: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e42e0|s1'
-991866206: 9062: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4300|s1'
-991866206: 9063: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4320|s1'
-991866206: 9064: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4340|s1'
-991866206: 9065: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4360|s1'
-991866206: 9066: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4380|s1'
-991866206: 9067: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e43a0|s1'
-991866206: 9068: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df3c0|s1'
-991866206: 9069: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0700|s1'
-991866206: 9070: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e43c0|s1'
-991866206: 9071: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e43e0|s1'
-991866206: 9072: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4400|s1'
-991866206: 9073: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4420|s1'
-991866206: 9074: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4440|s1'
-991866206: 9075: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4460|s1'
-991866206: 9076: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4480|s1'
-991866206: 9077: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e44a0|s1'
-991866206: 9078: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e44c0|s1'
-991866206: 9079: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e44e0|s1'
-991866206: 9080: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4500|s1'
-991866206: 9081: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4520|s1'
-991866206: 9082: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df400|s1'
-991866206: 9083: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0780|s1'
-991866206: 9084: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4540|s1'
-991866206: 9085: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4560|s1'
-991866206: 9086: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4580|s1'
-991866206: 9087: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e45a0|s1'
-991866206: 9088: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e45c0|s1'
-991866206: 9089: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e45e0|s1'
-991866206: 9090: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4600|s1'
-991866206: 9091: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4620|s1'
-991866206: 9092: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4640|s1'
-991866206: 9093: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4660|s1'
-991866206: 9094: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4680|s1'
-991866206: 9095: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e46a0|s1'
-991866206: 9096: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df440|s1'
-991866206: 9097: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0800|s1'
-991866206: 9098: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e46c0|s1'
-991866206: 9099: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e46e0|s1'
-991866206: 9100: checking heap
-991866206: 9100: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4700|s1'
-991866206: 9101: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4720|s1'
-991866206: 9102: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4740|s1'
-991866206: 9103: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4760|s1'
-991866206: 9104: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4780|s1'
-991866206: 9105: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e47a0|s1'
-991866206: 9106: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e47c0|s1'
-991866206: 9107: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e47e0|s1'
-991866206: 9108: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4800|s1'
-991866206: 9109: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4820|s1'
-991866206: 9110: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df480|s1'
-991866206: 9111: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0880|s1'
-991866206: 9112: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4840|s1'
-991866206: 9113: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4860|s1'
-991866206: 9114: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4880|s1'
-991866206: 9115: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e48a0|s1'
-991866206: 9116: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e48c0|s1'
-991866206: 9117: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e48e0|s1'
-991866206: 9118: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4900|s1'
-991866206: 9119: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4920|s1'
-991866206: 9120: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4940|s1'
-991866206: 9121: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4960|s1'
-991866206: 9122: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4980|s1'
-991866206: 9123: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e49a0|s1'
-991866206: 9124: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df4c0|s1'
-991866206: 9125: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0900|s1'
-991866206: 9126: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e49c0|s1'
-991866206: 9127: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e49e0|s1'
-991866206: 9128: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4a00|s1'
-991866206: 9129: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4a20|s1'
-991866206: 9130: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4a40|s1'
-991866206: 9131: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4a60|s1'
-991866206: 9132: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4a80|s1'
-991866206: 9133: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4aa0|s1'
-991866206: 9134: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4ac0|s1'
-991866206: 9135: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4ae0|s1'
-991866206: 9136: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82e4b00|s1'
-991866206: 9137: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4b20|s1'
-991866206: 9138: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4b40|s1'
-991866206: 9139: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4b60|s1'
-991866206: 9140: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4b80|s1'
-991866206: 9141: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df500|s1'
-991866206: 9142: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0980|s1'
-991866206: 9143: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4ba0|s1'
-991866206: 9144: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4bc0|s1'
-991866206: 9145: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4be0|s1'
-991866206: 9146: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4c00|s1'
-991866206: 9147: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4c20|s1'
-991866206: 9148: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4c40|s1'
-991866206: 9149: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4c60|s1'
-991866206: 9150: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4c80|s1'
-991866206: 9151: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4ca0|s1'
-991866206: 9152: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4cc0|s1'
-991866206: 9153: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4ce0|s1'
-991866206: 9154: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4d00|s1'
-991866206: 9155: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df540|s1'
-991866206: 9156: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0a00|s1'
-991866206: 9157: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4d20|s1'
-991866206: 9158: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4d40|s1'
-991866206: 9159: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4d60|s1'
-991866206: 9160: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4d80|s1'
-991866206: 9161: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4da0|s1'
-991866206: 9162: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4dc0|s1'
-991866206: 9163: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4de0|s1'
-991866206: 9164: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4e00|s1'
-991866206: 9165: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4e20|s1'
-991866206: 9166: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e4e40|s1'
-991866206: 9167: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e4e60|s1'
-991866206: 9168: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4e80|s1'
-991866206: 9169: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df580|s1'
-991866206: 9170: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0a80|s1'
-991866206: 9171: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4ea0|s1'
-991866206: 9172: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4ec0|s1'
-991866206: 9173: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e4ee0|s1'
-991866206: 9174: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e4f00|s1'
-991866206: 9175: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e4f20|s1'
-991866206: 9176: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e4f40|s1'
-991866206: 9177: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4f60|s1'
-991866206: 9178: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e4f80|s1'
-991866206: 9179: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e4fa0|s1'
-991866206: 9180: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e4fc0|s1'
-991866206: 9181: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82e4fe0|s1'
-991866206: 9182: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6000|s1'
-991866206: 9183: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6020|s1'
-991866206: 9184: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6040|s1'
-991866206: 9185: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6060|s1'
-991866206: 9186: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df5c0|s1'
-991866206: 9187: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0b00|s1'
-991866206: 9188: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6080|s1'
-991866206: 9189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e60a0|s1'
-991866206: 9190: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e60c0|s1'
-991866206: 9191: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e60e0|s1'
-991866206: 9192: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6100|s1'
-991866206: 9193: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6120|s1'
-991866206: 9194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6140|s1'
-991866206: 9195: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df600|s1'
-991866206: 9196: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0b80|s1'
-991866206: 9197: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6160|s1'
-991866206: 9198: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6180|s1'
-991866206: 9199: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e61a0|s1'
-991866206: 9200: checking heap
-991866206: 9200: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e61c0|s1'
-991866206: 9201: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e61e0|s1'
-991866206: 9202: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6200|s1'
-991866206: 9203: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6220|s1'
-991866206: 9204: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6240|s1'
-991866206: 9205: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6260|s1'
-991866206: 9206: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6280|s1'
-991866206: 9207: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e62a0|s1'
-991866206: 9208: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e62c0|s1'
-991866206: 9209: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df640|s1'
-991866206: 9210: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0c00|s1'
-991866206: 9211: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e62e0|s1'
-991866206: 9212: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6300|s1'
-991866206: 9213: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6320|s1'
-991866206: 9214: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6340|s1'
-991866206: 9215: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6360|s1'
-991866206: 9216: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6380|s1'
-991866206: 9217: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e63a0|s1'
-991866206: 9218: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df680|s1'
-991866206: 9219: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0c80|s1'
-991866206: 9220: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e63c0|s1'
-991866206: 9221: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e63e0|s1'
-991866206: 9222: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6400|s1'
-991866206: 9223: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6420|s1'
-991866206: 9224: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6440|s1'
-991866206: 9225: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6460|s1'
-991866206: 9226: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6480|s1'
-991866206: 9227: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e64a0|s1'
-991866206: 9228: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e64c0|s1'
-991866206: 9229: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e64e0|s1'
-991866206: 9230: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6500|s1'
-991866206: 9231: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6520|s1'
-991866206: 9232: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df6c0|s1'
-991866206: 9233: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0d00|s1'
-991866206: 9234: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6540|s1'
-991866206: 9235: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6560|s1'
-991866206: 9236: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6580|s1'
-991866206: 9237: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e65a0|s1'
-991866206: 9238: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e65c0|s1'
-991866206: 9239: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e65e0|s1'
-991866206: 9240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6600|s1'
-991866206: 9241: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df700|s1'
-991866206: 9242: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0d80|s1'
-991866206: 9243: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6620|s1'
-991866206: 9244: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6640|s1'
-991866206: 9245: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6660|s1'
-991866206: 9246: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6680|s1'
-991866206: 9247: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e66a0|s1'
-991866206: 9248: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e66c0|s1'
-991866206: 9249: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e66e0|s1'
-991866206: 9250: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6700|s1'
-991866206: 9251: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6720|s1'
-991866206: 9252: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6740|s1'
-991866206: 9253: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6760|s1'
-991866206: 9254: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6780|s1'
-991866206: 9255: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df740|s1'
-991866206: 9256: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0e00|s1'
-991866206: 9257: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e67a0|s1'
-991866206: 9258: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e67c0|s1'
-991866206: 9259: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e67e0|s1'
-991866206: 9260: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6800|s1'
-991866206: 9261: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6820|s1'
-991866206: 9262: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6840|s1'
-991866206: 9263: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6860|s1'
-991866206: 9264: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6880|s1'
-991866206: 9265: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e68a0|s1'
-991866206: 9266: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e68c0|s1'
-991866206: 9267: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e68e0|s1'
-991866206: 9268: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6900|s1'
-991866206: 9269: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df780|s1'
-991866206: 9270: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0e80|s1'
-991866206: 9271: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6920|s1'
-991866206: 9272: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6940|s1'
-991866206: 9273: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6960|s1'
-991866206: 9274: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6980|s1'
-991866206: 9275: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e69a0|s1'
-991866206: 9276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e69c0|s1'
-991866206: 9277: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e69e0|s1'
-991866206: 9278: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6a00|s1'
-991866206: 9279: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6a20|s1'
-991866206: 9280: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6a40|s1'
-991866206: 9281: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6a60|s1'
-991866206: 9282: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6a80|s1'
-991866206: 9283: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df7c0|s1'
-991866206: 9284: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0f00|s1'
-991866206: 9285: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6aa0|s1'
-991866206: 9286: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6ac0|s1'
-991866206: 9287: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6ae0|s1'
-991866206: 9288: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6b00|s1'
-991866206: 9289: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6b20|s1'
-991866206: 9290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6b40|s1'
-991866206: 9291: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6b60|s1'
-991866206: 9292: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6b80|s1'
-991866206: 9293: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6ba0|s1'
-991866206: 9294: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6bc0|s1'
-991866206: 9295: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6be0|s1'
-991866206: 9296: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6c00|s1'
-991866206: 9297: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df800|s1'
-991866206: 9298: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e0f80|s1'
-991866206: 9299: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6c20|s1'
-991866206: 9300: checking heap
-991866206: 9300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6c40|s1'
-991866206: 9301: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6c60|s1'
-991866206: 9302: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6c80|s1'
-991866206: 9303: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6ca0|s1'
-991866206: 9304: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6cc0|s1'
-991866206: 9305: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6ce0|s1'
-991866206: 9306: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6d00|s1'
-991866206: 9307: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6d20|s1'
-991866206: 9308: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6d40|s1'
-991866206: 9309: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6d60|s1'
-991866206: 9310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6d80|s1'
-991866206: 9311: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df840|s1'
-991866206: 9312: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8000|s1'
-991866206: 9313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6da0|s1'
-991866206: 9314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6dc0|s1'
-991866206: 9315: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6de0|s1'
-991866206: 9316: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6e00|s1'
-991866206: 9317: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6e20|s1'
-991866206: 9318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6e40|s1'
-991866206: 9319: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6e60|s1'
-991866206: 9320: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82e6e80|s1'
-991866206: 9321: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82e6ea0|s1'
-991866206: 9322: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82e6ec0|s1'
-991866206: 9323: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82e6ee0|s1'
-991866206: 9324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6f00|s1'
-991866206: 9325: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df880|s1'
-991866206: 9326: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8080|s1'
-991866206: 9327: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6f20|s1'
-991866206: 9328: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6f40|s1'
-991866206: 9329: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82e6f60|s1'
-991866206: 9330: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82e6f80|s1'
-991866206: 9331: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82e6fa0|s1'
-991866206: 9332: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82e6fc0|s1'
-991866206: 9333: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82e6fe0|s1'
-991866206: 9334: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ea000|s1'
-991866206: 9335: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ea020|s1'
-991866206: 9336: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ea040|s1'
-991866206: 9337: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ea060|s1'
-991866206: 9338: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea080|s1'
-991866206: 9339: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df8c0|s1'
-991866206: 9340: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8100|s1'
-991866206: 9341: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea0a0|s1'
-991866206: 9342: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea0c0|s1'
-991866206: 9343: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea0e0|s1'
-991866206: 9344: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea100|s1'
-991866206: 9345: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea120|s1'
-991866206: 9346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea140|s1'
-991866206: 9347: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ea160|s1'
-991866206: 9348: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ea180|s1'
-991866206: 9349: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ea1a0|s1'
-991866206: 9350: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ea1c0|s1'
-991866206: 9351: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ea1e0|s1'
-991866206: 9352: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea200|s1'
-991866206: 9353: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df900|s1'
-991866206: 9354: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8180|s1'
-991866206: 9355: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea220|s1'
-991866206: 9356: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea240|s1'
-991866206: 9357: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea260|s1'
-991866206: 9358: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea280|s1'
-991866206: 9359: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea2a0|s1'
-991866206: 9360: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea2c0|s1'
-991866206: 9361: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ea2e0|s1'
-991866206: 9362: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ea300|s1'
-991866206: 9363: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ea320|s1'
-991866206: 9364: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ea340|s1'
-991866206: 9365: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ea360|s1'
-991866206: 9366: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea380|s1'
-991866206: 9367: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df940|s1'
-991866206: 9368: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8200|s1'
-991866206: 9369: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea3a0|s1'
-991866206: 9370: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea3c0|s1'
-991866206: 9371: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea3e0|s1'
-991866206: 9372: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea400|s1'
-991866206: 9373: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea420|s1'
-991866206: 9374: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea440|s1'
-991866206: 9375: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ea460|s1'
-991866206: 9376: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ea480|s1'
-991866206: 9377: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ea4a0|s1'
-991866206: 9378: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ea4c0|s1'
-991866206: 9379: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ea4e0|s1'
-991866206: 9380: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea500|s1'
-991866206: 9381: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df980|s1'
-991866206: 9382: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8280|s1'
-991866206: 9383: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea520|s1'
-991866206: 9384: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea540|s1'
-991866206: 9385: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea560|s1'
-991866206: 9386: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea580|s1'
-991866206: 9387: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea5a0|s1'
-991866206: 9388: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea5c0|s1'
-991866206: 9389: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ea5e0|s1'
-991866206: 9390: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ea600|s1'
-991866206: 9391: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ea620|s1'
-991866206: 9392: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ea640|s1'
-991866206: 9393: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ea660|s1'
-991866206: 9394: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea680|s1'
-991866206: 9395: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82df9c0|s1'
-991866206: 9396: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8300|s1'
-991866206: 9397: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea6a0|s1'
-991866206: 9398: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea6c0|s1'
-991866206: 9399: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea6e0|s1'
-991866206: 9400: checking heap
-991866206: 9400: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea700|s1'
-991866206: 9401: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea720|s1'
-991866206: 9402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea740|s1'
-991866206: 9403: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea760|s1'
-991866206: 9404: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfa00|s1'
-991866206: 9405: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8380|s1'
-991866206: 9406: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea780|s1'
-991866206: 9407: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea7a0|s1'
-991866206: 9408: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea7c0|s1'
-991866206: 9409: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea7e0|s1'
-991866206: 9410: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea800|s1'
-991866206: 9411: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea820|s1'
-991866206: 9412: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ea840|s1'
-991866206: 9413: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ea860|s1'
-991866206: 9414: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ea880|s1'
-991866206: 9415: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ea8a0|s1'
-991866206: 9416: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ea8c0|s1'
-991866206: 9417: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea8e0|s1'
-991866206: 9418: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfa40|s1'
-991866206: 9419: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8400|s1'
-991866206: 9420: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea900|s1'
-991866206: 9421: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea920|s1'
-991866206: 9422: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ea940|s1'
-991866206: 9423: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ea960|s1'
-991866206: 9424: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea980|s1'
-991866206: 9425: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea9a0|s1'
-991866206: 9426: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ea9c0|s1'
-991866206: 9427: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfa80|s1'
-991866206: 9428: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8480|s1'
-991866206: 9429: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ea9e0|s1'
-991866206: 9430: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eaa00|s1'
-991866206: 9431: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eaa20|s1'
-991866206: 9432: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eaa40|s1'
-991866206: 9433: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eaa60|s1'
-991866206: 9434: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eaa80|s1'
-991866206: 9435: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82eaaa0|s1'
-991866206: 9436: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82eaac0|s1'
-991866206: 9437: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82eaae0|s1'
-991866206: 9438: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82eab00|s1'
-991866206: 9439: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82eab20|s1'
-991866206: 9440: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eab40|s1'
-991866206: 9441: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfac0|s1'
-991866206: 9442: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8500|s1'
-991866206: 9443: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eab60|s1'
-991866206: 9444: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eab80|s1'
-991866206: 9445: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eaba0|s1'
-991866206: 9446: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eabc0|s1'
-991866206: 9447: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eabe0|s1'
-991866206: 9448: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eac00|s1'
-991866206: 9449: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eac20|s1'
-991866206: 9450: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfb00|s1'
-991866206: 9451: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8580|s1'
-991866206: 9452: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eac40|s1'
-991866206: 9453: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eac60|s1'
-991866206: 9454: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eac80|s1'
-991866206: 9455: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eaca0|s1'
-991866206: 9456: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eacc0|s1'
-991866206: 9457: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eace0|s1'
-991866206: 9458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ead00|s1'
-991866206: 9459: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfb40|s1'
-991866206: 9460: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8600|s1'
-991866206: 9461: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ead20|s1'
-991866206: 9462: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ead40|s1'
-991866206: 9463: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ead60|s1'
-991866206: 9464: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ead80|s1'
-991866206: 9465: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eada0|s1'
-991866206: 9466: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eadc0|s1'
-991866206: 9467: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82eade0|s1'
-991866206: 9468: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82eae00|s1'
-991866206: 9469: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82eae20|s1'
-991866206: 9470: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82eae40|s1'
-991866206: 9471: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82eae60|s1'
-991866206: 9472: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eae80|s1'
-991866206: 9473: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfb80|s1'
-991866206: 9474: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8680|s1'
-991866206: 9475: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eaea0|s1'
-991866206: 9476: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eaec0|s1'
-991866206: 9477: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eaee0|s1'
-991866206: 9478: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eaf00|s1'
-991866206: 9479: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eaf20|s1'
-991866206: 9480: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eaf40|s1'
-991866206: 9481: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eaf60|s1'
-991866206: 9482: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfbc0|s1'
-991866206: 9483: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8700|s1'
-991866206: 9484: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eaf80|s1'
-991866206: 9485: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eafa0|s1'
-991866206: 9486: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eafc0|s1'
-991866206: 9487: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eafe0|s1'
-991866206: 9488: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec000|s1'
-991866206: 9489: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec020|s1'
-991866206: 9490: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec040|s1'
-991866206: 9491: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfc00|s1'
-991866206: 9492: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8780|s1'
-991866206: 9493: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec060|s1'
-991866206: 9494: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec080|s1'
-991866206: 9495: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec0a0|s1'
-991866206: 9496: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec0c0|s1'
-991866206: 9497: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec0e0|s1'
-991866206: 9498: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec100|s1'
-991866206: 9499: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ec120|s1'
-991866206: 9500: checking heap
-991866206: 9500: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ec140|s1'
-991866206: 9501: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ec160|s1'
-991866206: 9502: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ec180|s1'
-991866206: 9503: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ec1a0|s1'
-991866206: 9504: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec1c0|s1'
-991866206: 9505: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfc40|s1'
-991866206: 9506: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8800|s1'
-991866206: 9507: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec1e0|s1'
-991866206: 9508: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec200|s1'
-991866206: 9509: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec220|s1'
-991866206: 9510: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec240|s1'
-991866206: 9511: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec260|s1'
-991866206: 9512: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec280|s1'
-991866206: 9513: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec2a0|s1'
-991866206: 9514: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec2c0|s1'
-991866206: 9515: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec2e0|s1'
-991866206: 9516: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfc80|s1'
-991866206: 9517: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8880|s1'
-991866206: 9518: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec300|s1'
-991866206: 9519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec320|s1'
-991866206: 9520: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec340|s1'
-991866206: 9521: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec360|s1'
-991866206: 9522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec380|s1'
-991866206: 9523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec3a0|s1'
-991866206: 9524: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ec3c0|s1'
-991866206: 9525: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ec3e0|s1'
-991866206: 9526: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ec400|s1'
-991866206: 9527: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ec420|s1'
-991866206: 9528: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ec440|s1'
-991866206: 9529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec460|s1'
-991866206: 9530: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfcc0|s1'
-991866206: 9531: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8900|s1'
-991866206: 9532: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec480|s1'
-991866206: 9533: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec4a0|s1'
-991866206: 9534: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec4c0|s1'
-991866206: 9535: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec4e0|s1'
-991866206: 9536: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec500|s1'
-991866206: 9537: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec520|s1'
-991866206: 9538: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec540|s1'
-991866206: 9539: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec560|s1'
-991866206: 9540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec580|s1'
-991866206: 9541: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfd00|s1'
-991866206: 9542: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8980|s1'
-991866206: 9543: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec5a0|s1'
-991866206: 9544: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec5c0|s1'
-991866206: 9545: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec5e0|s1'
-991866206: 9546: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec600|s1'
-991866206: 9547: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec620|s1'
-991866206: 9548: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec640|s1'
-991866206: 9549: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ec660|s1'
-991866206: 9550: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ec680|s1'
-991866206: 9551: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ec6a0|s1'
-991866206: 9552: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ec6c0|s1'
-991866206: 9553: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ec6e0|s1'
-991866206: 9554: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec700|s1'
-991866206: 9555: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfd40|s1'
-991866206: 9556: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8a00|s1'
-991866206: 9557: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec720|s1'
-991866206: 9558: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec740|s1'
-991866206: 9559: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec760|s1'
-991866206: 9560: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec780|s1'
-991866206: 9561: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec7a0|s1'
-991866206: 9562: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec7c0|s1'
-991866206: 9563: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec7e0|s1'
-991866206: 9564: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec800|s1'
-991866206: 9565: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec820|s1'
-991866206: 9566: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfd80|s1'
-991866206: 9567: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8a80|s1'
-991866206: 9568: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec840|s1'
-991866206: 9569: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec860|s1'
-991866206: 9570: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec880|s1'
-991866206: 9571: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec8a0|s1'
-991866206: 9572: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec8c0|s1'
-991866206: 9573: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec8e0|s1'
-991866206: 9574: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec900|s1'
-991866206: 9575: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfdc0|s1'
-991866206: 9576: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8b00|s1'
-991866206: 9577: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec920|s1'
-991866206: 9578: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec940|s1'
-991866206: 9579: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ec960|s1'
-991866206: 9580: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ec980|s1'
-991866206: 9581: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ec9a0|s1'
-991866206: 9582: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ec9c0|s1'
-991866206: 9583: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ec9e0|s1'
-991866206: 9584: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82eca00|s1'
-991866206: 9585: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82eca20|s1'
-991866206: 9586: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82eca40|s1'
-991866206: 9587: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82eca60|s1'
-991866206: 9588: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eca80|s1'
-991866206: 9589: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfe00|s1'
-991866206: 9590: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8b80|s1'
-991866206: 9591: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecaa0|s1'
-991866206: 9592: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecac0|s1'
-991866206: 9593: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ecae0|s1'
-991866206: 9594: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ecb00|s1'
-991866206: 9595: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecb20|s1'
-991866206: 9596: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecb40|s1'
-991866206: 9597: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecb60|s1'
-991866206: 9598: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecb80|s1'
-991866206: 9599: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecba0|s1'
-991866206: 9600: checking heap
-991866206: 9600: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfe40|s1'
-991866206: 9601: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8c00|s1'
-991866206: 9602: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecbc0|s1'
-991866206: 9603: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecbe0|s1'
-991866206: 9604: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ecc00|s1'
-991866206: 9605: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ecc20|s1'
-991866206: 9606: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecc40|s1'
-991866206: 9607: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecc60|s1'
-991866206: 9608: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecc80|s1'
-991866206: 9609: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfe80|s1'
-991866206: 9610: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8c80|s1'
-991866206: 9611: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecca0|s1'
-991866206: 9612: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eccc0|s1'
-991866206: 9613: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ecce0|s1'
-991866206: 9614: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ecd00|s1'
-991866206: 9615: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecd20|s1'
-991866206: 9616: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecd40|s1'
-991866206: 9617: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ecd60|s1'
-991866206: 9618: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ecd80|s1'
-991866206: 9619: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ecda0|s1'
-991866206: 9620: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ecdc0|s1'
-991866206: 9621: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ecde0|s1'
-991866206: 9622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ece00|s1'
-991866206: 9623: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dfec0|s1'
-991866206: 9624: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8d00|s1'
-991866206: 9625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ece20|s1'
-991866206: 9626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ece40|s1'
-991866206: 9627: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ece60|s1'
-991866206: 9628: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ece80|s1'
-991866206: 9629: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecea0|s1'
-991866206: 9630: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecec0|s1'
-991866206: 9631: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecee0|s1'
-991866206: 9632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecf00|s1'
-991866206: 9633: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecf20|s1'
-991866206: 9634: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dff00|s1'
-991866206: 9635: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8d80|s1'
-991866206: 9636: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecf40|s1'
-991866206: 9637: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecf60|s1'
-991866206: 9638: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ecf80|s1'
-991866206: 9639: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ecfa0|s1'
-991866206: 9640: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ecfc0|s1'
-991866206: 9641: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ecfe0|s1'
-991866206: 9642: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee000|s1'
-991866206: 9643: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dff40|s1'
-991866206: 9644: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8e00|s1'
-991866206: 9645: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee020|s1'
-991866206: 9646: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee040|s1'
-991866206: 9647: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee060|s1'
-991866206: 9648: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee080|s1'
-991866206: 9649: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee0a0|s1'
-991866206: 9650: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee0c0|s1'
-991866206: 9651: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ee0e0|s1'
-991866206: 9652: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ee100|s1'
-991866206: 9653: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ee120|s1'
-991866206: 9654: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ee140|s1'
-991866206: 9655: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ee160|s1'
-991866206: 9656: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee180|s1'
-991866206: 9657: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dff80|s1'
-991866206: 9658: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8e80|s1'
-991866206: 9659: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee1a0|s1'
-991866206: 9660: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee1c0|s1'
-991866206: 9661: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee1e0|s1'
-991866206: 9662: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee200|s1'
-991866206: 9663: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee220|s1'
-991866206: 9664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee240|s1'
-991866206: 9665: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee260|s1'
-991866206: 9666: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee280|s1'
-991866206: 9667: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee2a0|s1'
-991866206: 9668: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82dffc0|s1'
-991866206: 9669: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8f00|s1'
-991866206: 9670: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee2c0|s1'
-991866206: 9671: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee2e0|s1'
-991866206: 9672: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee300|s1'
-991866206: 9673: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee320|s1'
-991866206: 9674: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee340|s1'
-991866206: 9675: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee360|s1'
-991866206: 9676: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee380|s1'
-991866206: 9677: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0000|s1'
-991866206: 9678: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82e8f80|s1'
-991866206: 9679: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee3a0|s1'
-991866206: 9680: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee3c0|s1'
-991866206: 9681: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee3e0|s1'
-991866206: 9682: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee400|s1'
-991866206: 9683: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee420|s1'
-991866206: 9684: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee440|s1'
-991866206: 9685: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ee460|s1'
-991866206: 9686: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ee480|s1'
-991866206: 9687: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ee4a0|s1'
-991866206: 9688: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ee4c0|s1'
-991866206: 9689: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82ee4e0|s1'
-991866206: 9690: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ee500|s1'
-991866206: 9691: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ee520|s1'
-991866206: 9692: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ee540|s1'
-991866206: 9693: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee560|s1'
-991866206: 9694: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0040|s1'
-991866206: 9695: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1000|s1'
-991866206: 9696: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee580|s1'
-991866206: 9697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee5a0|s1'
-991866206: 9698: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee5c0|s1'
-991866206: 9699: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee5e0|s1'
-991866206: 9700: checking heap
-991866206: 9700: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee600|s1'
-991866206: 9701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee620|s1'
-991866206: 9702: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee640|s1'
-991866206: 9703: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee660|s1'
-991866206: 9704: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee680|s1'
-991866206: 9705: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0080|s1'
-991866206: 9706: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1080|s1'
-991866206: 9707: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee6a0|s1'
-991866206: 9708: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee6c0|s1'
-991866206: 9709: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee6e0|s1'
-991866206: 9710: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee700|s1'
-991866206: 9711: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee720|s1'
-991866206: 9712: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee740|s1'
-991866206: 9713: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee760|s1'
-991866206: 9714: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f00c0|s1'
-991866206: 9715: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1100|s1'
-991866206: 9716: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee780|s1'
-991866206: 9717: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee7a0|s1'
-991866206: 9718: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee7c0|s1'
-991866206: 9719: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee7e0|s1'
-991866206: 9720: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee800|s1'
-991866206: 9721: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee820|s1'
-991866206: 9722: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82ee840|s1'
-991866206: 9723: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82ee860|s1'
-991866206: 9724: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82ee880|s1'
-991866206: 9725: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82ee8a0|s1'
-991866206: 9726: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82ee8c0|s1'
-991866206: 9727: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee8e0|s1'
-991866206: 9728: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0100|s1'
-991866206: 9729: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1180|s1'
-991866206: 9730: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee900|s1'
-991866206: 9731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee920|s1'
-991866206: 9732: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82ee940|s1'
-991866206: 9733: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82ee960|s1'
-991866206: 9734: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee980|s1'
-991866206: 9735: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee9a0|s1'
-991866206: 9736: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82ee9c0|s1'
-991866206: 9737: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82ee9e0|s1'
-991866206: 9738: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eea00|s1'
-991866206: 9739: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0140|s1'
-991866206: 9740: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1200|s1'
-991866206: 9741: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eea20|s1'
-991866206: 9742: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eea40|s1'
-991866206: 9743: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eea60|s1'
-991866206: 9744: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eea80|s1'
-991866206: 9745: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eeaa0|s1'
-991866206: 9746: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eeac0|s1'
-991866206: 9747: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eeae0|s1'
-991866206: 9748: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0180|s1'
-991866206: 9749: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1280|s1'
-991866206: 9750: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eeb00|s1'
-991866206: 9751: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eeb20|s1'
-991866206: 9752: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eeb40|s1'
-991866206: 9753: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eeb60|s1'
-991866206: 9754: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eeb80|s1'
-991866206: 9755: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eeba0|s1'
-991866206: 9756: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82eebc0|s1'
-991866206: 9757: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82eebe0|s1'
-991866206: 9758: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82eec00|s1'
-991866206: 9759: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82eec20|s1'
-991866206: 9760: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82eec40|s1'
-991866206: 9761: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eec60|s1'
-991866206: 9762: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f01c0|s1'
-991866206: 9763: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1300|s1'
-991866206: 9764: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eec80|s1'
-991866206: 9765: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eeca0|s1'
-991866206: 9766: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eecc0|s1'
-991866206: 9767: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eece0|s1'
-991866206: 9768: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eed00|s1'
-991866206: 9769: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eed20|s1'
-991866206: 9770: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eed40|s1'
-991866206: 9771: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eed60|s1'
-991866206: 9772: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eed80|s1'
-991866206: 9773: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0200|s1'
-991866206: 9774: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1380|s1'
-991866206: 9775: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eeda0|s1'
-991866206: 9776: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eedc0|s1'
-991866206: 9777: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eede0|s1'
-991866206: 9778: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eee00|s1'
-991866206: 9779: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eee20|s1'
-991866206: 9780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eee40|s1'
-991866206: 9781: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eee60|s1'
-991866206: 9782: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0240|s1'
-991866206: 9783: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1400|s1'
-991866206: 9784: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eee80|s1'
-991866206: 9785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eeea0|s1'
-991866206: 9786: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82eeec0|s1'
-991866206: 9787: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82eeee0|s1'
-991866206: 9788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82eef00|s1'
-991866206: 9789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eef20|s1'
-991866206: 9790: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82eef40|s1'
-991866206: 9791: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82eef60|s1'
-991866206: 9792: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82eef80|s1'
-991866206: 9793: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82eefa0|s1'
-991866206: 9794: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82eefc0|s1'
-991866206: 9795: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82eefe0|s1'
-991866206: 9796: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0280|s1'
-991866206: 9797: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1480|s1'
-991866206: 9798: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3000|s1'
-991866206: 9799: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3020|s1'
-991866206: 9800: checking heap
-991866206: 9800: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3040|s1'
-991866206: 9801: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3060|s1'
-991866206: 9802: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3080|s1'
-991866206: 9803: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f30a0|s1'
-991866206: 9804: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f30c0|s1'
-991866206: 9805: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f30e0|s1'
-991866206: 9806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3100|s1'
-991866206: 9807: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f02c0|s1'
-991866206: 9808: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1500|s1'
-991866206: 9809: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3120|s1'
-991866206: 9810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3140|s1'
-991866206: 9811: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3160|s1'
-991866206: 9812: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3180|s1'
-991866206: 9813: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f31a0|s1'
-991866206: 9814: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f31c0|s1'
-991866206: 9815: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f31e0|s1'
-991866206: 9816: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0300|s1'
-991866206: 9817: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1580|s1'
-991866206: 9818: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3200|s1'
-991866206: 9819: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3220|s1'
-991866206: 9820: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3240|s1'
-991866206: 9821: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3260|s1'
-991866206: 9822: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3280|s1'
-991866206: 9823: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f32a0|s1'
-991866206: 9824: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f32c0|s1'
-991866206: 9825: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f32e0|s1'
-991866206: 9826: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f3300|s1'
-991866206: 9827: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f3320|s1'
-991866206: 9828: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f3340|s1'
-991866206: 9829: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3360|s1'
-991866206: 9830: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0340|s1'
-991866206: 9831: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1600|s1'
-991866206: 9832: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3380|s1'
-991866206: 9833: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f33a0|s1'
-991866206: 9834: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f33c0|s1'
-991866206: 9835: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f33e0|s1'
-991866206: 9836: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3400|s1'
-991866206: 9837: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3420|s1'
-991866206: 9838: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3440|s1'
-991866206: 9839: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3460|s1'
-991866206: 9840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3480|s1'
-991866206: 9841: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0380|s1'
-991866206: 9842: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1680|s1'
-991866206: 9843: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f34a0|s1'
-991866206: 9844: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f34c0|s1'
-991866206: 9845: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f34e0|s1'
-991866206: 9846: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3500|s1'
-991866206: 9847: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3520|s1'
-991866206: 9848: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3540|s1'
-991866206: 9849: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3560|s1'
-991866206: 9850: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f03c0|s1'
-991866206: 9851: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1700|s1'
-991866206: 9852: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3580|s1'
-991866206: 9853: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f35a0|s1'
-991866206: 9854: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f35c0|s1'
-991866206: 9855: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f35e0|s1'
-991866206: 9856: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3600|s1'
-991866206: 9857: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3620|s1'
-991866206: 9858: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f3640|s1'
-991866206: 9859: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f3660|s1'
-991866206: 9860: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f3680|s1'
-991866206: 9861: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f36a0|s1'
-991866206: 9862: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f36c0|s1'
-991866206: 9863: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f36e0|s1'
-991866206: 9864: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0400|s1'
-991866206: 9865: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1780|s1'
-991866206: 9866: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3700|s1'
-991866206: 9867: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3720|s1'
-991866206: 9868: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3740|s1'
-991866206: 9869: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3760|s1'
-991866206: 9870: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3780|s1'
-991866206: 9871: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f37a0|s1'
-991866206: 9872: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f37c0|s1'
-991866206: 9873: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f37e0|s1'
-991866206: 9874: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3800|s1'
-991866206: 9875: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0440|s1'
-991866206: 9876: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1800|s1'
-991866206: 9877: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3820|s1'
-991866206: 9878: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3840|s1'
-991866206: 9879: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3860|s1'
-991866206: 9880: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3880|s1'
-991866206: 9881: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f38a0|s1'
-991866206: 9882: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f38c0|s1'
-991866206: 9883: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f38e0|s1'
-991866206: 9884: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0480|s1'
-991866206: 9885: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1880|s1'
-991866206: 9886: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3900|s1'
-991866206: 9887: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3920|s1'
-991866206: 9888: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3940|s1'
-991866206: 9889: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3960|s1'
-991866206: 9890: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3980|s1'
-991866206: 9891: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f39a0|s1'
-991866206: 9892: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f39c0|s1'
-991866206: 9893: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f39e0|s1'
-991866206: 9894: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f3a00|s1'
-991866206: 9895: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f3a20|s1'
-991866206: 9896: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x82f3a40|s1'
-991866206: 9897: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f3a60|s1'
-991866206: 9898: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f3a80|s1'
-991866206: 9899: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f3aa0|s1'
-991866206: 9900: checking heap
-991866206: 9900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3ac0|s1'
-991866206: 9901: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f04c0|s1'
-991866206: 9902: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1900|s1'
-991866206: 9903: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3ae0|s1'
-991866206: 9904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3b00|s1'
-991866206: 9905: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3b20|s1'
-991866206: 9906: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3b40|s1'
-991866206: 9907: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3b60|s1'
-991866206: 9908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3b80|s1'
-991866206: 9909: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3ba0|s1'
-991866206: 9910: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3bc0|s1'
-991866206: 9911: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3be0|s1'
-991866206: 9912: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0500|s1'
-991866206: 9913: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1980|s1'
-991866206: 9914: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3c00|s1'
-991866206: 9915: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3c20|s1'
-991866206: 9916: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3c40|s1'
-991866206: 9917: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3c60|s1'
-991866206: 9918: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3c80|s1'
-991866206: 9919: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3ca0|s1'
-991866206: 9920: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f3cc0|s1'
-991866206: 9921: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f3ce0|s1'
-991866206: 9922: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f3d00|s1'
-991866206: 9923: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f3d20|s1'
-991866206: 9924: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f3d40|s1'
-991866206: 9925: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3d60|s1'
-991866206: 9926: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0540|s1'
-991866206: 9927: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1a00|s1'
-991866206: 9928: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3d80|s1'
-991866206: 9929: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3da0|s1'
-991866206: 9930: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3dc0|s1'
-991866206: 9931: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3de0|s1'
-991866206: 9932: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3e00|s1'
-991866206: 9933: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3e20|s1'
-991866206: 9934: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3e40|s1'
-991866206: 9935: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3e60|s1'
-991866206: 9936: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3e80|s1'
-991866206: 9937: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0580|s1'
-991866206: 9938: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1a80|s1'
-991866206: 9939: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3ea0|s1'
-991866206: 9940: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3ec0|s1'
-991866206: 9941: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f3ee0|s1'
-991866206: 9942: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f3f00|s1'
-991866206: 9943: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f3f20|s1'
-991866206: 9944: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f3f40|s1'
-991866206: 9945: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f3f60|s1'
-991866206: 9946: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f3f80|s1'
-991866206: 9947: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f3fa0|s1'
-991866206: 9948: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f3fc0|s1'
-991866206: 9949: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f3fe0|s1'
-991866206: 9950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5000|s1'
-991866206: 9951: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f05c0|s1'
-991866206: 9952: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1b00|s1'
-991866206: 9953: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5020|s1'
-991866206: 9954: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5040|s1'
-991866206: 9955: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5060|s1'
-991866206: 9956: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5080|s1'
-991866206: 9957: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f50a0|s1'
-991866206: 9958: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f50c0|s1'
-991866206: 9959: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f50e0|s1'
-991866206: 9960: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5100|s1'
-991866206: 9961: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5120|s1'
-991866206: 9962: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0600|s1'
-991866206: 9963: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1b80|s1'
-991866206: 9964: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5140|s1'
-991866206: 9965: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5160|s1'
-991866206: 9966: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5180|s1'
-991866206: 9967: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f51a0|s1'
-991866206: 9968: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f51c0|s1'
-991866206: 9969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f51e0|s1'
-991866206: 9970: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f5200|s1'
-991866206: 9971: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f5220|s1'
-991866206: 9972: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f5240|s1'
-991866206: 9973: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f5260|s1'
-991866206: 9974: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f5280|s1'
-991866206: 9975: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f52a0|s1'
-991866206: 9976: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0640|s1'
-991866206: 9977: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1c00|s1'
-991866206: 9978: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f52c0|s1'
-991866206: 9979: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f52e0|s1'
-991866206: 9980: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5300|s1'
-991866206: 9981: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5320|s1'
-991866206: 9982: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5340|s1'
-991866206: 9983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5360|s1'
-991866206: 9984: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5380|s1'
-991866206: 9985: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f53a0|s1'
-991866206: 9986: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f53c0|s1'
-991866206: 9987: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0680|s1'
-991866206: 9988: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1c80|s1'
-991866206: 9989: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f53e0|s1'
-991866206: 9990: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5400|s1'
-991866206: 9991: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5420|s1'
-991866206: 9992: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5440|s1'
-991866206: 9993: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5460|s1'
-991866206: 9994: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5480|s1'
-991866206: 9995: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f54a0|s1'
-991866206: 9996: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f06c0|s1'
-991866206: 9997: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1d00|s1'
-991866206: 9998: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f54c0|s1'
-991866206: 9999: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f54e0|s1'
-991866206: 10000: checking heap
-991866206: 10000: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5500|s1'
-991866206: 10001: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5520|s1'
-991866206: 10002: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5540|s1'
-991866206: 10003: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5560|s1'
-991866206: 10004: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f5580|s1'
-991866206: 10005: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f55a0|s1'
-991866206: 10006: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f55c0|s1'
-991866206: 10007: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f55e0|s1'
-991866206: 10008: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f5600|s1'
-991866206: 10009: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5620|s1'
-991866206: 10010: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0700|s1'
-991866206: 10011: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1d80|s1'
-991866206: 10012: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5640|s1'
-991866206: 10013: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5660|s1'
-991866206: 10014: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5680|s1'
-991866206: 10015: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f56a0|s1'
-991866206: 10016: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f56c0|s1'
-991866206: 10017: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f56e0|s1'
-991866206: 10018: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5700|s1'
-991866206: 10019: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5720|s1'
-991866206: 10020: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5740|s1'
-991866206: 10021: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0740|s1'
-991866206: 10022: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1e00|s1'
-991866206: 10023: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5760|s1'
-991866206: 10024: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5780|s1'
-991866206: 10025: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f57a0|s1'
-991866206: 10026: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f57c0|s1'
-991866206: 10027: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f57e0|s1'
-991866206: 10028: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5800|s1'
-991866206: 10029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5820|s1'
-991866206: 10030: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0780|s1'
-991866206: 10031: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1e80|s1'
-991866206: 10032: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5840|s1'
-991866206: 10033: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5860|s1'
-991866206: 10034: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5880|s1'
-991866206: 10035: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f58a0|s1'
-991866206: 10036: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f58c0|s1'
-991866206: 10037: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f58e0|s1'
-991866206: 10038: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f5900|s1'
-991866206: 10039: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f5920|s1'
-991866206: 10040: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f5940|s1'
-991866206: 10041: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f5960|s1'
-991866206: 10042: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f5980|s1'
-991866206: 10043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f59a0|s1'
-991866206: 10044: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f07c0|s1'
-991866206: 10045: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1f00|s1'
-991866206: 10046: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f59c0|s1'
-991866206: 10047: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f59e0|s1'
-991866206: 10048: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5a00|s1'
-991866206: 10049: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5a20|s1'
-991866206: 10050: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5a40|s1'
-991866206: 10051: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5a60|s1'
-991866206: 10052: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5a80|s1'
-991866206: 10053: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5aa0|s1'
-991866206: 10054: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5ac0|s1'
-991866206: 10055: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0800|s1'
-991866206: 10056: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f1f80|s1'
-991866206: 10057: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5ae0|s1'
-991866206: 10058: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5b00|s1'
-991866206: 10059: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5b20|s1'
-991866206: 10060: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5b40|s1'
-991866206: 10061: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5b60|s1'
-991866206: 10062: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5b80|s1'
-991866206: 10063: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5ba0|s1'
-991866206: 10064: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0840|s1'
-991866206: 10065: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7000|s1'
-991866206: 10066: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5bc0|s1'
-991866206: 10067: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5be0|s1'
-991866206: 10068: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5c00|s1'
-991866206: 10069: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5c20|s1'
-991866206: 10070: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5c40|s1'
-991866206: 10071: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5c60|s1'
-991866206: 10072: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f5c80|s1'
-991866206: 10073: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f5ca0|s1'
-991866206: 10074: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f5cc0|s1'
-991866206: 10075: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f5ce0|s1'
-991866206: 10076: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f5d00|s1'
-991866206: 10077: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5d20|s1'
-991866206: 10078: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0880|s1'
-991866206: 10079: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7080|s1'
-991866206: 10080: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5d40|s1'
-991866206: 10081: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5d60|s1'
-991866206: 10082: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5d80|s1'
-991866206: 10083: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5da0|s1'
-991866206: 10084: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5dc0|s1'
-991866206: 10085: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5de0|s1'
-991866206: 10086: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5e00|s1'
-991866206: 10087: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5e20|s1'
-991866206: 10088: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5e40|s1'
-991866206: 10089: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f08c0|s1'
-991866206: 10090: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7100|s1'
-991866206: 10091: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5e60|s1'
-991866206: 10092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5e80|s1'
-991866206: 10093: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f5ea0|s1'
-991866206: 10094: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f5ec0|s1'
-991866206: 10095: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5ee0|s1'
-991866206: 10096: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5f00|s1'
-991866206: 10097: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f5f20|s1'
-991866206: 10098: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f5f40|s1'
-991866206: 10099: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f5f60|s1'
-991866206: 10100: checking heap
-991866206: 10100: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f5f80|s1'
-991866206: 10101: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f5fa0|s1'
-991866206: 10102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f5fc0|s1'
-991866206: 10103: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0900|s1'
-991866206: 10104: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7180|s1'
-991866206: 10105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f5fe0|s1'
-991866206: 10106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9000|s1'
-991866206: 10107: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9020|s1'
-991866206: 10108: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9040|s1'
-991866206: 10109: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9060|s1'
-991866206: 10110: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9080|s1'
-991866206: 10111: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f90a0|s1'
-991866206: 10112: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f90c0|s1'
-991866206: 10113: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f90e0|s1'
-991866206: 10114: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0940|s1'
-991866206: 10115: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7200|s1'
-991866206: 10116: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9100|s1'
-991866206: 10117: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9120|s1'
-991866206: 10118: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9140|s1'
-991866206: 10119: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9160|s1'
-991866206: 10120: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9180|s1'
-991866206: 10121: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f91a0|s1'
-991866206: 10122: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f91c0|s1'
-991866206: 10123: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f91e0|s1'
-991866206: 10124: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f9200|s1'
-991866206: 10125: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f9220|s1'
-991866206: 10126: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f9240|s1'
-991866206: 10127: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9260|s1'
-991866206: 10128: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0980|s1'
-991866206: 10129: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7280|s1'
-991866206: 10130: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9280|s1'
-991866206: 10131: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f92a0|s1'
-991866206: 10132: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f92c0|s1'
-991866206: 10133: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f92e0|s1'
-991866206: 10134: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9300|s1'
-991866206: 10135: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9320|s1'
-991866206: 10136: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9340|s1'
-991866206: 10137: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9360|s1'
-991866206: 10138: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9380|s1'
-991866206: 10139: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f09c0|s1'
-991866206: 10140: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7300|s1'
-991866206: 10141: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f93a0|s1'
-991866206: 10142: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f93c0|s1'
-991866206: 10143: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f93e0|s1'
-991866206: 10144: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9400|s1'
-991866206: 10145: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9420|s1'
-991866206: 10146: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9440|s1'
-991866206: 10147: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f9460|s1'
-991866206: 10148: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f9480|s1'
-991866206: 10149: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f94a0|s1'
-991866206: 10150: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f94c0|s1'
-991866206: 10151: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f94e0|s1'
-991866206: 10152: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9500|s1'
-991866206: 10153: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0a00|s1'
-991866206: 10154: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7380|s1'
-991866206: 10155: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9520|s1'
-991866206: 10156: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9540|s1'
-991866206: 10157: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9560|s1'
-991866206: 10158: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9580|s1'
-991866206: 10159: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f95a0|s1'
-991866206: 10160: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f95c0|s1'
-991866206: 10161: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f95e0|s1'
-991866206: 10162: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9600|s1'
-991866206: 10163: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9620|s1'
-991866206: 10164: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0a40|s1'
-991866206: 10165: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7400|s1'
-991866206: 10166: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9640|s1'
-991866206: 10167: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9660|s1'
-991866206: 10168: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9680|s1'
-991866206: 10169: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f96a0|s1'
-991866206: 10170: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f96c0|s1'
-991866206: 10171: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f96e0|s1'
-991866206: 10172: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9700|s1'
-991866206: 10173: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0a80|s1'
-991866206: 10174: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7480|s1'
-991866206: 10175: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9720|s1'
-991866206: 10176: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9740|s1'
-991866206: 10177: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9760|s1'
-991866206: 10178: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9780|s1'
-991866206: 10179: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f97a0|s1'
-991866206: 10180: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f97c0|s1'
-991866206: 10181: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f97e0|s1'
-991866206: 10182: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f9800|s1'
-991866206: 10183: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f9820|s1'
-991866206: 10184: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f9840|s1'
-991866206: 10185: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f9860|s1'
-991866206: 10186: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9880|s1'
-991866206: 10187: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0ac0|s1'
-991866206: 10188: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7500|s1'
-991866206: 10189: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f98a0|s1'
-991866206: 10190: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f98c0|s1'
-991866206: 10191: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f98e0|s1'
-991866206: 10192: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9900|s1'
-991866206: 10193: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9920|s1'
-991866206: 10194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9940|s1'
-991866206: 10195: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9960|s1'
-991866206: 10196: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9980|s1'
-991866206: 10197: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f99a0|s1'
-991866206: 10198: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0b00|s1'
-991866206: 10199: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7580|s1'
-991866206: 10200: checking heap
-991866206: 10200: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f99c0|s1'
-991866206: 10201: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f99e0|s1'
-991866206: 10202: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9a00|s1'
-991866206: 10203: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9a20|s1'
-991866206: 10204: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9a40|s1'
-991866206: 10205: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9a60|s1'
-991866206: 10206: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9a80|s1'
-991866206: 10207: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0b40|s1'
-991866206: 10208: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7600|s1'
-991866206: 10209: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9aa0|s1'
-991866206: 10210: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9ac0|s1'
-991866206: 10211: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9ae0|s1'
-991866206: 10212: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9b00|s1'
-991866206: 10213: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9b20|s1'
-991866206: 10214: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9b40|s1'
-991866206: 10215: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f9b60|s1'
-991866206: 10216: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f9b80|s1'
-991866206: 10217: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f9ba0|s1'
-991866206: 10218: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f9bc0|s1'
-991866206: 10219: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f9be0|s1'
-991866206: 10220: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9c00|s1'
-991866206: 10221: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0b80|s1'
-991866206: 10222: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7680|s1'
-991866206: 10223: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9c20|s1'
-991866206: 10224: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9c40|s1'
-991866206: 10225: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9c60|s1'
-991866206: 10226: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9c80|s1'
-991866206: 10227: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9ca0|s1'
-991866206: 10228: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9cc0|s1'
-991866206: 10229: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9ce0|s1'
-991866206: 10230: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9d00|s1'
-991866206: 10231: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9d20|s1'
-991866206: 10232: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0bc0|s1'
-991866206: 10233: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7700|s1'
-991866206: 10234: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9d40|s1'
-991866206: 10235: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9d60|s1'
-991866206: 10236: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9d80|s1'
-991866206: 10237: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9da0|s1'
-991866206: 10238: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9dc0|s1'
-991866206: 10239: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9de0|s1'
-991866206: 10240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9e00|s1'
-991866206: 10241: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0c00|s1'
-991866206: 10242: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7780|s1'
-991866206: 10243: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9e20|s1'
-991866206: 10244: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9e40|s1'
-991866206: 10245: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9e60|s1'
-991866206: 10246: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82f9e80|s1'
-991866206: 10247: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9ea0|s1'
-991866206: 10248: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9ec0|s1'
-991866206: 10249: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82f9ee0|s1'
-991866206: 10250: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82f9f00|s1'
-991866206: 10251: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82f9f20|s1'
-991866206: 10252: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82f9f40|s1'
-991866206: 10253: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82f9f60|s1'
-991866206: 10254: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9f80|s1'
-991866206: 10255: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0c40|s1'
-991866206: 10256: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7800|s1'
-991866206: 10257: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82f9fa0|s1'
-991866206: 10258: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82f9fc0|s1'
-991866206: 10259: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82f9fe0|s1'
-991866206: 10260: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc000|s1'
-991866206: 10261: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc020|s1'
-991866206: 10262: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc040|s1'
-991866206: 10263: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc060|s1'
-991866206: 10264: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0c80|s1'
-991866206: 10265: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7880|s1'
-991866206: 10266: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc080|s1'
-991866206: 10267: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc0a0|s1'
-991866206: 10268: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc0c0|s1'
-991866206: 10269: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc0e0|s1'
-991866206: 10270: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc100|s1'
-991866206: 10271: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc120|s1'
-991866206: 10272: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc140|s1'
-991866206: 10273: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0cc0|s1'
-991866206: 10274: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7900|s1'
-991866206: 10275: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc160|s1'
-991866206: 10276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc180|s1'
-991866206: 10277: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc1a0|s1'
-991866206: 10278: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc1c0|s1'
-991866206: 10279: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc1e0|s1'
-991866206: 10280: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc200|s1'
-991866206: 10281: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fc220|s1'
-991866206: 10282: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fc240|s1'
-991866206: 10283: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fc260|s1'
-991866206: 10284: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fc280|s1'
-991866206: 10285: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fc2a0|s1'
-991866206: 10286: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc2c0|s1'
-991866206: 10287: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0d00|s1'
-991866206: 10288: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7980|s1'
-991866206: 10289: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc2e0|s1'
-991866206: 10290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc300|s1'
-991866206: 10291: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc320|s1'
-991866206: 10292: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc340|s1'
-991866206: 10293: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc360|s1'
-991866206: 10294: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc380|s1'
-991866206: 10295: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc3a0|s1'
-991866206: 10296: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0d40|s1'
-991866206: 10297: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7a00|s1'
-991866206: 10298: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc3c0|s1'
-991866206: 10299: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc3e0|s1'
-991866206: 10300: checking heap
-991866206: 10300: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc400|s1'
-991866206: 10301: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc420|s1'
-991866206: 10302: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc440|s1'
-991866206: 10303: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc460|s1'
-991866206: 10304: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc480|s1'
-991866206: 10305: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0d80|s1'
-991866206: 10306: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7a80|s1'
-991866206: 10307: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc4a0|s1'
-991866206: 10308: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc4c0|s1'
-991866206: 10309: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc4e0|s1'
-991866206: 10310: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc500|s1'
-991866206: 10311: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc520|s1'
-991866206: 10312: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc540|s1'
-991866206: 10313: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fc560|s1'
-991866206: 10314: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fc580|s1'
-991866206: 10315: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fc5a0|s1'
-991866206: 10316: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fc5c0|s1'
-991866206: 10317: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fc5e0|s1'
-991866206: 10318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc600|s1'
-991866206: 10319: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0dc0|s1'
-991866206: 10320: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7b00|s1'
-991866206: 10321: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc620|s1'
-991866206: 10322: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc640|s1'
-991866206: 10323: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc660|s1'
-991866206: 10324: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc680|s1'
-991866206: 10325: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc6a0|s1'
-991866206: 10326: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc6c0|s1'
-991866206: 10327: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc6e0|s1'
-991866206: 10328: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0e00|s1'
-991866206: 10329: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7b80|s1'
-991866206: 10330: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc700|s1'
-991866206: 10331: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc720|s1'
-991866206: 10332: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc740|s1'
-991866206: 10333: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc760|s1'
-991866206: 10334: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc780|s1'
-991866206: 10335: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc7a0|s1'
-991866206: 10336: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fc7c0|s1'
-991866206: 10337: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fc7e0|s1'
-991866206: 10338: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fc800|s1'
-991866206: 10339: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fc820|s1'
-991866206: 10340: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fc840|s1'
-991866206: 10341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc860|s1'
-991866206: 10342: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0e40|s1'
-991866206: 10343: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7c00|s1'
-991866206: 10344: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc880|s1'
-991866206: 10345: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc8a0|s1'
-991866206: 10346: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc8c0|s1'
-991866206: 10347: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc8e0|s1'
-991866206: 10348: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc900|s1'
-991866206: 10349: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc920|s1'
-991866206: 10350: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc940|s1'
-991866206: 10351: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0e80|s1'
-991866206: 10352: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7c80|s1'
-991866206: 10353: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc960|s1'
-991866206: 10354: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fc980|s1'
-991866206: 10355: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fc9a0|s1'
-991866206: 10356: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fc9c0|s1'
-991866206: 10357: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fc9e0|s1'
-991866206: 10358: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fca00|s1'
-991866206: 10359: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fca20|s1'
-991866206: 10360: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fca40|s1'
-991866206: 10361: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fca60|s1'
-991866206: 10362: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fca80|s1'
-991866206: 10363: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fcaa0|s1'
-991866206: 10364: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcac0|s1'
-991866206: 10365: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0ec0|s1'
-991866206: 10366: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7d00|s1'
-991866206: 10367: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcae0|s1'
-991866206: 10368: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcb00|s1'
-991866206: 10369: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fcb20|s1'
-991866206: 10370: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fcb40|s1'
-991866206: 10371: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcb60|s1'
-991866206: 10372: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcb80|s1'
-991866206: 10373: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcba0|s1'
-991866206: 10374: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0f00|s1'
-991866206: 10375: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7d80|s1'
-991866206: 10376: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcbc0|s1'
-991866206: 10377: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcbe0|s1'
-991866206: 10378: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fcc00|s1'
-991866206: 10379: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fcc20|s1'
-991866206: 10380: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcc40|s1'
-991866206: 10381: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcc60|s1'
-991866206: 10382: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fcc80|s1'
-991866206: 10383: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fcca0|s1'
-991866206: 10384: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fccc0|s1'
-991866206: 10385: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fcce0|s1'
-991866206: 10386: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fcd00|s1'
-991866206: 10387: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcd20|s1'
-991866206: 10388: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0f40|s1'
-991866206: 10389: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7e00|s1'
-991866206: 10390: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcd40|s1'
-991866206: 10391: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcd60|s1'
-991866206: 10392: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fcd80|s1'
-991866206: 10393: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fcda0|s1'
-991866206: 10394: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcdc0|s1'
-991866206: 10395: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcde0|s1'
-991866206: 10396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fce00|s1'
-991866206: 10397: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0f80|s1'
-991866206: 10398: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7e80|s1'
-991866206: 10399: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fce20|s1'
-991866206: 10400: checking heap
-991866206: 10400: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fce40|s1'
-991866206: 10401: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fce60|s1'
-991866206: 10402: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fce80|s1'
-991866206: 10403: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcea0|s1'
-991866206: 10404: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcec0|s1'
-991866206: 10405: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fcee0|s1'
-991866206: 10406: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fcf00|s1'
-991866206: 10407: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fcf20|s1'
-991866206: 10408: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fcf40|s1'
-991866206: 10409: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fcf60|s1'
-991866206: 10410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcf80|s1'
-991866206: 10411: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x82f0fc0|s1'
-991866206: 10412: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7f00|s1'
-991866206: 10413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fcfa0|s1'
-991866206: 10414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fcfc0|s1'
-991866206: 10415: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fcfe0|s1'
-991866206: 10416: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe000|s1'
-991866206: 10417: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe020|s1'
-991866206: 10418: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe040|s1'
-991866206: 10419: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe060|s1'
-991866206: 10420: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300000|s1'
-991866206: 10421: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x82f7f80|s1'
-991866206: 10422: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe080|s1'
-991866206: 10423: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe0a0|s1'
-991866206: 10424: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe0c0|s1'
-991866206: 10425: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe0e0|s1'
-991866206: 10426: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe100|s1'
-991866206: 10427: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe120|s1'
-991866206: 10428: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe140|s1'
-991866206: 10429: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300040|s1'
-991866206: 10430: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301000|s1'
-991866206: 10431: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe160|s1'
-991866206: 10432: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe180|s1'
-991866206: 10433: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe1a0|s1'
-991866206: 10434: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe1c0|s1'
-991866206: 10435: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe1e0|s1'
-991866206: 10436: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe200|s1'
-991866206: 10437: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fe220|s1'
-991866206: 10438: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fe240|s1'
-991866206: 10439: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fe260|s1'
-991866206: 10440: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fe280|s1'
-991866206: 10441: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fe2a0|s1'
-991866206: 10442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe2c0|s1'
-991866206: 10443: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300080|s1'
-991866206: 10444: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301080|s1'
-991866206: 10445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe2e0|s1'
-991866206: 10446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe300|s1'
-991866206: 10447: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe320|s1'
-991866206: 10448: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe340|s1'
-991866206: 10449: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe360|s1'
-991866206: 10450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe380|s1'
-991866206: 10451: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe3a0|s1'
-991866206: 10452: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83000c0|s1'
-991866206: 10453: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301100|s1'
-991866206: 10454: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe3c0|s1'
-991866206: 10455: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe3e0|s1'
-991866206: 10456: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe400|s1'
-991866206: 10457: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe420|s1'
-991866206: 10458: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe440|s1'
-991866206: 10459: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe460|s1'
-991866206: 10460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe480|s1'
-991866206: 10461: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300100|s1'
-991866206: 10462: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301180|s1'
-991866206: 10463: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe4a0|s1'
-991866206: 10464: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe4c0|s1'
-991866206: 10465: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe4e0|s1'
-991866206: 10466: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe500|s1'
-991866206: 10467: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe520|s1'
-991866206: 10468: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe540|s1'
-991866206: 10469: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fe560|s1'
-991866206: 10470: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fe580|s1'
-991866206: 10471: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fe5a0|s1'
-991866206: 10472: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fe5c0|s1'
-991866206: 10473: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fe5e0|s1'
-991866206: 10474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe600|s1'
-991866206: 10475: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300140|s1'
-991866206: 10476: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301200|s1'
-991866206: 10477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe620|s1'
-991866206: 10478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe640|s1'
-991866206: 10479: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe660|s1'
-991866206: 10480: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe680|s1'
-991866206: 10481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe6a0|s1'
-991866206: 10482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe6c0|s1'
-991866206: 10483: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe6e0|s1'
-991866206: 10484: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe700|s1'
-991866206: 10485: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe720|s1'
-991866206: 10486: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300180|s1'
-991866206: 10487: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301280|s1'
-991866206: 10488: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe740|s1'
-991866206: 10489: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe760|s1'
-991866206: 10490: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe780|s1'
-991866206: 10491: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe7a0|s1'
-991866206: 10492: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe7c0|s1'
-991866206: 10493: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe7e0|s1'
-991866206: 10494: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe800|s1'
-991866206: 10495: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83001c0|s1'
-991866206: 10496: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301300|s1'
-991866206: 10497: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe820|s1'
-991866206: 10498: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe840|s1'
-991866206: 10499: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe860|s1'
-991866206: 10500: checking heap
-991866206: 10500: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fe880|s1'
-991866206: 10501: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe8a0|s1'
-991866206: 10502: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe8c0|s1'
-991866206: 10503: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fe8e0|s1'
-991866206: 10504: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fe900|s1'
-991866206: 10505: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fe920|s1'
-991866206: 10506: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fe940|s1'
-991866206: 10507: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fe960|s1'
-991866206: 10508: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe980|s1'
-991866206: 10509: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300200|s1'
-991866206: 10510: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301380|s1'
-991866206: 10511: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fe9a0|s1'
-991866206: 10512: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fe9c0|s1'
-991866206: 10513: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fe9e0|s1'
-991866206: 10514: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fea00|s1'
-991866206: 10515: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fea20|s1'
-991866206: 10516: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fea40|s1'
-991866206: 10517: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fea60|s1'
-991866206: 10518: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fea80|s1'
-991866206: 10519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82feaa0|s1'
-991866206: 10520: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300240|s1'
-991866206: 10521: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301400|s1'
-991866206: 10522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82feac0|s1'
-991866206: 10523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82feae0|s1'
-991866206: 10524: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82feb00|s1'
-991866206: 10525: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82feb20|s1'
-991866206: 10526: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82feb40|s1'
-991866206: 10527: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82feb60|s1'
-991866206: 10528: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82feb80|s1'
-991866206: 10529: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300280|s1'
-991866206: 10530: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301480|s1'
-991866206: 10531: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82feba0|s1'
-991866206: 10532: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82febc0|s1'
-991866206: 10533: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82febe0|s1'
-991866206: 10534: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fec00|s1'
-991866206: 10535: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fec20|s1'
-991866206: 10536: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fec40|s1'
-991866206: 10537: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fec60|s1'
-991866206: 10538: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fec80|s1'
-991866206: 10539: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82feca0|s1'
-991866206: 10540: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x82fecc0|s1'
-991866206: 10541: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x82fece0|s1'
-991866206: 10542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fed00|s1'
-991866206: 10543: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83002c0|s1'
-991866206: 10544: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301500|s1'
-991866206: 10545: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fed20|s1'
-991866206: 10546: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fed40|s1'
-991866206: 10547: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fed60|s1'
-991866206: 10548: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fed80|s1'
-991866206: 10549: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82feda0|s1'
-991866206: 10550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fedc0|s1'
-991866206: 10551: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fede0|s1'
-991866206: 10552: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300300|s1'
-991866206: 10553: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301580|s1'
-991866206: 10554: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fee00|s1'
-991866206: 10555: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fee20|s1'
-991866206: 10556: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fee40|s1'
-991866206: 10557: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fee60|s1'
-991866206: 10558: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fee80|s1'
-991866206: 10559: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82feea0|s1'
-991866206: 10560: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82feec0|s1'
-991866206: 10561: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300340|s1'
-991866206: 10562: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301600|s1'
-991866206: 10563: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82feee0|s1'
-991866206: 10564: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fef00|s1'
-991866206: 10565: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x82fef20|s1'
-991866206: 10566: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x82fef40|s1'
-991866206: 10567: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x82fef60|s1'
-991866206: 10568: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x82fef80|s1'
-991866206: 10569: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x82fefa0|s1'
-991866206: 10570: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x82fefc0|s1'
-991866206: 10571: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x82fefe0|s1'
-991866206: 10572: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8303000|s1'
-991866206: 10573: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8303020|s1'
-991866206: 10574: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303040|s1'
-991866206: 10575: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300380|s1'
-991866206: 10576: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301680|s1'
-991866206: 10577: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303060|s1'
-991866206: 10578: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303080|s1'
-991866206: 10579: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83030a0|s1'
-991866206: 10580: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83030c0|s1'
-991866206: 10581: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83030e0|s1'
-991866206: 10582: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303100|s1'
-991866206: 10583: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303120|s1'
-991866206: 10584: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83003c0|s1'
-991866206: 10585: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301700|s1'
-991866206: 10586: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303140|s1'
-991866206: 10587: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303160|s1'
-991866206: 10588: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303180|s1'
-991866206: 10589: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83031a0|s1'
-991866206: 10590: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83031c0|s1'
-991866206: 10591: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83031e0|s1'
-991866206: 10592: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303200|s1'
-991866206: 10593: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300400|s1'
-991866206: 10594: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301780|s1'
-991866206: 10595: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303220|s1'
-991866206: 10596: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303240|s1'
-991866206: 10597: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303260|s1'
-991866206: 10598: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303280|s1'
-991866206: 10599: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83032a0|s1'
-991866206: 10600: checking heap
-991866206: 10600: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83032c0|s1'
-991866206: 10601: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83032e0|s1'
-991866206: 10602: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8303300|s1'
-991866206: 10603: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8303320|s1'
-991866206: 10604: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8303340|s1'
-991866206: 10605: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8303360|s1'
-991866206: 10606: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303380|s1'
-991866206: 10607: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300440|s1'
-991866206: 10608: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301800|s1'
-991866206: 10609: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83033a0|s1'
-991866206: 10610: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83033c0|s1'
-991866206: 10611: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83033e0|s1'
-991866206: 10612: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303400|s1'
-991866206: 10613: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303420|s1'
-991866206: 10614: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303440|s1'
-991866206: 10615: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303460|s1'
-991866206: 10616: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300480|s1'
-991866206: 10617: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301880|s1'
-991866206: 10618: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303480|s1'
-991866206: 10619: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83034a0|s1'
-991866206: 10620: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83034c0|s1'
-991866206: 10621: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83034e0|s1'
-991866206: 10622: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303500|s1'
-991866206: 10623: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303520|s1'
-991866206: 10624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303540|s1'
-991866206: 10625: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83004c0|s1'
-991866206: 10626: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301900|s1'
-991866206: 10627: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303560|s1'
-991866206: 10628: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303580|s1'
-991866206: 10629: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83035a0|s1'
-991866206: 10630: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83035c0|s1'
-991866206: 10631: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83035e0|s1'
-991866206: 10632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303600|s1'
-991866206: 10633: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8303620|s1'
-991866206: 10634: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8303640|s1'
-991866206: 10635: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8303660|s1'
-991866206: 10636: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8303680|s1'
-991866206: 10637: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83036a0|s1'
-991866206: 10638: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83036c0|s1'
-991866206: 10639: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300500|s1'
-991866206: 10640: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301980|s1'
-991866206: 10641: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83036e0|s1'
-991866206: 10642: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303700|s1'
-991866206: 10643: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303720|s1'
-991866206: 10644: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303740|s1'
-991866206: 10645: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303760|s1'
-991866206: 10646: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303780|s1'
-991866206: 10647: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83037a0|s1'
-991866206: 10648: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300540|s1'
-991866206: 10649: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301a00|s1'
-991866206: 10650: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83037c0|s1'
-991866206: 10651: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83037e0|s1'
-991866206: 10652: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303800|s1'
-991866206: 10653: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303820|s1'
-991866206: 10654: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303840|s1'
-991866206: 10655: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303860|s1'
-991866206: 10656: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8303880|s1'
-991866206: 10657: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83038a0|s1'
-991866206: 10658: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83038c0|s1'
-991866206: 10659: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83038e0|s1'
-991866206: 10660: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8303900|s1'
-991866206: 10661: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303920|s1'
-991866206: 10662: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300580|s1'
-991866206: 10663: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301a80|s1'
-991866206: 10664: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303940|s1'
-991866206: 10665: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303960|s1'
-991866206: 10666: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303980|s1'
-991866206: 10667: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83039a0|s1'
-991866206: 10668: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83039c0|s1'
-991866206: 10669: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83039e0|s1'
-991866206: 10670: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303a00|s1'
-991866206: 10671: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83005c0|s1'
-991866206: 10672: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301b00|s1'
-991866206: 10673: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303a20|s1'
-991866206: 10674: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303a40|s1'
-991866206: 10675: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303a60|s1'
-991866206: 10676: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303a80|s1'
-991866206: 10677: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303aa0|s1'
-991866206: 10678: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303ac0|s1'
-991866206: 10679: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8303ae0|s1'
-991866206: 10680: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8303b00|s1'
-991866206: 10681: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8303b20|s1'
-991866206: 10682: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8303b40|s1'
-991866206: 10683: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8303b60|s1'
-991866206: 10684: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303b80|s1'
-991866206: 10685: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300600|s1'
-991866206: 10686: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301b80|s1'
-991866206: 10687: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303ba0|s1'
-991866206: 10688: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303bc0|s1'
-991866206: 10689: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303be0|s1'
-991866206: 10690: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303c00|s1'
-991866206: 10691: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303c20|s1'
-991866206: 10692: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303c40|s1'
-991866206: 10693: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303c60|s1'
-991866206: 10694: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300640|s1'
-991866206: 10695: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301c00|s1'
-991866206: 10696: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303c80|s1'
-991866206: 10697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303ca0|s1'
-991866206: 10698: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303cc0|s1'
-991866206: 10699: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303ce0|s1'
-991866206: 10700: checking heap
-991866206: 10700: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303d00|s1'
-991866206: 10701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303d20|s1'
-991866206: 10702: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8303d40|s1'
-991866206: 10703: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8303d60|s1'
-991866206: 10704: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8303d80|s1'
-991866206: 10705: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8303da0|s1'
-991866206: 10706: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8303dc0|s1'
-991866206: 10707: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303de0|s1'
-991866206: 10708: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300680|s1'
-991866206: 10709: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301c80|s1'
-991866206: 10710: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303e00|s1'
-991866206: 10711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303e20|s1'
-991866206: 10712: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303e40|s1'
-991866206: 10713: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303e60|s1'
-991866206: 10714: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303e80|s1'
-991866206: 10715: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303ea0|s1'
-991866206: 10716: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303ec0|s1'
-991866206: 10717: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83006c0|s1'
-991866206: 10718: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301d00|s1'
-991866206: 10719: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303ee0|s1'
-991866206: 10720: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303f00|s1'
-991866206: 10721: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8303f20|s1'
-991866206: 10722: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8303f40|s1'
-991866206: 10723: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8303f60|s1'
-991866206: 10724: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8303f80|s1'
-991866206: 10725: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8303fa0|s1'
-991866206: 10726: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8303fc0|s1'
-991866206: 10727: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8303fe0|s1'
-991866206: 10728: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8305000|s1'
-991866206: 10729: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8305020|s1'
-991866206: 10730: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305040|s1'
-991866206: 10731: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300700|s1'
-991866206: 10732: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301d80|s1'
-991866206: 10733: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305060|s1'
-991866206: 10734: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305080|s1'
-991866206: 10735: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83050a0|s1'
-991866206: 10736: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83050c0|s1'
-991866206: 10737: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83050e0|s1'
-991866206: 10738: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305100|s1'
-991866206: 10739: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305120|s1'
-991866206: 10740: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300740|s1'
-991866206: 10741: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301e00|s1'
-991866206: 10742: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305140|s1'
-991866206: 10743: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305160|s1'
-991866206: 10744: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305180|s1'
-991866206: 10745: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83051a0|s1'
-991866206: 10746: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83051c0|s1'
-991866206: 10747: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83051e0|s1'
-991866206: 10748: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8305200|s1'
-991866206: 10749: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8305220|s1'
-991866206: 10750: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8305240|s1'
-991866206: 10751: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8305260|s1'
-991866206: 10752: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8305280|s1'
-991866206: 10753: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83052a0|s1'
-991866206: 10754: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300780|s1'
-991866206: 10755: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301e80|s1'
-991866206: 10756: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83052c0|s1'
-991866206: 10757: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83052e0|s1'
-991866206: 10758: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305300|s1'
-991866206: 10759: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305320|s1'
-991866206: 10760: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305340|s1'
-991866206: 10761: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305360|s1'
-991866206: 10762: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305380|s1'
-991866206: 10763: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83007c0|s1'
-991866206: 10764: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301f00|s1'
-991866206: 10765: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83053a0|s1'
-991866206: 10766: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83053c0|s1'
-991866206: 10767: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83053e0|s1'
-991866206: 10768: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305400|s1'
-991866206: 10769: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305420|s1'
-991866206: 10770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305440|s1'
-991866206: 10771: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8305460|s1'
-991866206: 10772: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8305480|s1'
-991866206: 10773: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83054a0|s1'
-991866206: 10774: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83054c0|s1'
-991866206: 10775: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83054e0|s1'
-991866206: 10776: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305500|s1'
-991866206: 10777: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300800|s1'
-991866206: 10778: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8301f80|s1'
-991866206: 10779: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305520|s1'
-991866206: 10780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305540|s1'
-991866206: 10781: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305560|s1'
-991866206: 10782: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305580|s1'
-991866206: 10783: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83055a0|s1'
-991866206: 10784: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83055c0|s1'
-991866206: 10785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83055e0|s1'
-991866206: 10786: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300840|s1'
-991866206: 10787: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307000|s1'
-991866206: 10788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305600|s1'
-991866206: 10789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305620|s1'
-991866206: 10790: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305640|s1'
-991866206: 10791: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305660|s1'
-991866206: 10792: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305680|s1'
-991866206: 10793: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83056a0|s1'
-991866206: 10794: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83056c0|s1'
-991866206: 10795: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83056e0|s1'
-991866206: 10796: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8305700|s1'
-991866206: 10797: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8305720|s1'
-991866206: 10798: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8305740|s1'
-991866206: 10799: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305760|s1'
-991866206: 10800: checking heap
-991866206: 10800: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300880|s1'
-991866206: 10801: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307080|s1'
-991866206: 10802: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305780|s1'
-991866206: 10803: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83057a0|s1'
-991866206: 10804: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83057c0|s1'
-991866206: 10805: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83057e0|s1'
-991866206: 10806: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305800|s1'
-991866206: 10807: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305820|s1'
-991866206: 10808: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305840|s1'
-991866206: 10809: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83008c0|s1'
-991866206: 10810: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307100|s1'
-991866206: 10811: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305860|s1'
-991866206: 10812: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305880|s1'
-991866206: 10813: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83058a0|s1'
-991866206: 10814: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83058c0|s1'
-991866206: 10815: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83058e0|s1'
-991866206: 10816: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305900|s1'
-991866206: 10817: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8305920|s1'
-991866206: 10818: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8305940|s1'
-991866206: 10819: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8305960|s1'
-991866206: 10820: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8305980|s1'
-991866206: 10821: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83059a0|s1'
-991866206: 10822: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83059c0|s1'
-991866206: 10823: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300900|s1'
-991866206: 10824: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307180|s1'
-991866206: 10825: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83059e0|s1'
-991866206: 10826: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305a00|s1'
-991866206: 10827: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305a20|s1'
-991866206: 10828: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305a40|s1'
-991866206: 10829: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305a60|s1'
-991866206: 10830: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305a80|s1'
-991866206: 10831: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305aa0|s1'
-991866206: 10832: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300940|s1'
-991866206: 10833: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307200|s1'
-991866206: 10834: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305ac0|s1'
-991866206: 10835: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305ae0|s1'
-991866206: 10836: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305b00|s1'
-991866206: 10837: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305b20|s1'
-991866206: 10838: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305b40|s1'
-991866206: 10839: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305b60|s1'
-991866206: 10840: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8305b80|s1'
-991866206: 10841: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8305ba0|s1'
-991866206: 10842: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8305bc0|s1'
-991866206: 10843: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8305be0|s1'
-991866206: 10844: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8305c00|s1'
-991866206: 10845: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305c20|s1'
-991866206: 10846: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300980|s1'
-991866206: 10847: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307280|s1'
-991866206: 10848: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305c40|s1'
-991866206: 10849: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305c60|s1'
-991866206: 10850: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305c80|s1'
-991866206: 10851: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305ca0|s1'
-991866206: 10852: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305cc0|s1'
-991866206: 10853: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305ce0|s1'
-991866206: 10854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305d00|s1'
-991866206: 10855: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83009c0|s1'
-991866206: 10856: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307300|s1'
-991866206: 10857: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305d20|s1'
-991866206: 10858: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305d40|s1'
-991866206: 10859: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305d60|s1'
-991866206: 10860: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305d80|s1'
-991866206: 10861: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305da0|s1'
-991866206: 10862: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305dc0|s1'
-991866206: 10863: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8305de0|s1'
-991866206: 10864: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8305e00|s1'
-991866206: 10865: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8305e20|s1'
-991866206: 10866: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8305e40|s1'
-991866206: 10867: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8305e60|s1'
-991866206: 10868: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305e80|s1'
-991866206: 10869: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300a00|s1'
-991866206: 10870: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307380|s1'
-991866206: 10871: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305ea0|s1'
-991866206: 10872: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305ec0|s1'
-991866206: 10873: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305ee0|s1'
-991866206: 10874: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305f00|s1'
-991866206: 10875: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305f20|s1'
-991866206: 10876: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305f40|s1'
-991866206: 10877: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305f60|s1'
-991866206: 10878: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300a40|s1'
-991866206: 10879: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307400|s1'
-991866206: 10880: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8305f80|s1'
-991866206: 10881: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8305fa0|s1'
-991866206: 10882: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8305fc0|s1'
-991866206: 10883: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8305fe0|s1'
-991866206: 10884: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309000|s1'
-991866206: 10885: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309020|s1'
-991866206: 10886: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8309040|s1'
-991866206: 10887: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8309060|s1'
-991866206: 10888: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8309080|s1'
-991866206: 10889: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83090a0|s1'
-991866206: 10890: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83090c0|s1'
-991866206: 10891: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83090e0|s1'
-991866206: 10892: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300a80|s1'
-991866206: 10893: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307480|s1'
-991866206: 10894: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309100|s1'
-991866206: 10895: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309120|s1'
-991866206: 10896: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309140|s1'
-991866206: 10897: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309160|s1'
-991866206: 10898: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309180|s1'
-991866206: 10899: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83091a0|s1'
-991866206: 10900: checking heap
-991866206: 10900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83091c0|s1'
-991866206: 10901: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300ac0|s1'
-991866206: 10902: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307500|s1'
-991866206: 10903: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83091e0|s1'
-991866206: 10904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309200|s1'
-991866206: 10905: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309220|s1'
-991866206: 10906: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309240|s1'
-991866206: 10907: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309260|s1'
-991866206: 10908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309280|s1'
-991866206: 10909: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83092a0|s1'
-991866206: 10910: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83092c0|s1'
-991866206: 10911: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83092e0|s1'
-991866206: 10912: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8309300|s1'
-991866206: 10913: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8309320|s1'
-991866206: 10914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309340|s1'
-991866206: 10915: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300b00|s1'
-991866206: 10916: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307580|s1'
-991866206: 10917: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309360|s1'
-991866206: 10918: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309380|s1'
-991866206: 10919: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83093a0|s1'
-991866206: 10920: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83093c0|s1'
-991866206: 10921: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83093e0|s1'
-991866206: 10922: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309400|s1'
-991866206: 10923: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309420|s1'
-991866206: 10924: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300b40|s1'
-991866206: 10925: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307600|s1'
-991866206: 10926: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309440|s1'
-991866206: 10927: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309460|s1'
-991866206: 10928: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309480|s1'
-991866206: 10929: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83094a0|s1'
-991866206: 10930: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83094c0|s1'
-991866206: 10931: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83094e0|s1'
-991866206: 10932: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8309500|s1'
-991866206: 10933: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8309520|s1'
-991866206: 10934: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8309540|s1'
-991866206: 10935: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8309560|s1'
-991866206: 10936: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8309580|s1'
-991866206: 10937: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83095a0|s1'
-991866206: 10938: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300b80|s1'
-991866206: 10939: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307680|s1'
-991866206: 10940: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83095c0|s1'
-991866206: 10941: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83095e0|s1'
-991866206: 10942: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309600|s1'
-991866206: 10943: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309620|s1'
-991866206: 10944: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309640|s1'
-991866206: 10945: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309660|s1'
-991866206: 10946: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309680|s1'
-991866206: 10947: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300bc0|s1'
-991866206: 10948: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307700|s1'
-991866206: 10949: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83096a0|s1'
-991866206: 10950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83096c0|s1'
-991866206: 10951: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83096e0|s1'
-991866206: 10952: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309700|s1'
-991866206: 10953: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309720|s1'
-991866206: 10954: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309740|s1'
-991866206: 10955: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8309760|s1'
-991866206: 10956: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8309780|s1'
-991866206: 10957: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83097a0|s1'
-991866206: 10958: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83097c0|s1'
-991866206: 10959: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83097e0|s1'
-991866206: 10960: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309800|s1'
-991866206: 10961: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300c00|s1'
-991866206: 10962: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307780|s1'
-991866206: 10963: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309820|s1'
-991866206: 10964: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309840|s1'
-991866206: 10965: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309860|s1'
-991866206: 10966: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309880|s1'
-991866206: 10967: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83098a0|s1'
-991866206: 10968: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83098c0|s1'
-991866206: 10969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83098e0|s1'
-991866206: 10970: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300c40|s1'
-991866206: 10971: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307800|s1'
-991866206: 10972: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309900|s1'
-991866206: 10973: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309920|s1'
-991866206: 10974: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309940|s1'
-991866206: 10975: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309960|s1'
-991866206: 10976: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309980|s1'
-991866206: 10977: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83099a0|s1'
-991866206: 10978: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83099c0|s1'
-991866206: 10979: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83099e0|s1'
-991866206: 10980: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8309a00|s1'
-991866206: 10981: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8309a20|s1'
-991866206: 10982: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8309a40|s1'
-991866206: 10983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309a60|s1'
-991866206: 10984: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300c80|s1'
-991866206: 10985: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307880|s1'
-991866206: 10986: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309a80|s1'
-991866206: 10987: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309aa0|s1'
-991866206: 10988: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309ac0|s1'
-991866206: 10989: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309ae0|s1'
-991866206: 10990: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309b00|s1'
-991866206: 10991: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309b20|s1'
-991866206: 10992: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309b40|s1'
-991866206: 10993: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300cc0|s1'
-991866206: 10994: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307900|s1'
-991866206: 10995: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309b60|s1'
-991866206: 10996: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309b80|s1'
-991866206: 10997: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309ba0|s1'
-991866206: 10998: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309bc0|s1'
-991866206: 10999: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309be0|s1'
-991866206: 11000: checking heap
-991866206: 11000: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309c00|s1'
-991866206: 11001: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8309c20|s1'
-991866206: 11002: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8309c40|s1'
-991866206: 11003: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8309c60|s1'
-991866206: 11004: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8309c80|s1'
-991866206: 11005: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8309ca0|s1'
-991866206: 11006: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309cc0|s1'
-991866206: 11007: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300d00|s1'
-991866206: 11008: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307980|s1'
-991866206: 11009: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309ce0|s1'
-991866206: 11010: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309d00|s1'
-991866206: 11011: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309d20|s1'
-991866206: 11012: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309d40|s1'
-991866206: 11013: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309d60|s1'
-991866206: 11014: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309d80|s1'
-991866206: 11015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309da0|s1'
-991866206: 11016: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300d40|s1'
-991866206: 11017: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307a00|s1'
-991866206: 11018: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309dc0|s1'
-991866206: 11019: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309de0|s1'
-991866206: 11020: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309e00|s1'
-991866206: 11021: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309e20|s1'
-991866206: 11022: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309e40|s1'
-991866206: 11023: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309e60|s1'
-991866206: 11024: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8309e80|s1'
-991866206: 11025: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8309ea0|s1'
-991866206: 11026: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8309ec0|s1'
-991866206: 11027: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8309ee0|s1'
-991866206: 11028: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8309f00|s1'
-991866206: 11029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309f20|s1'
-991866206: 11030: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300d80|s1'
-991866206: 11031: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307a80|s1'
-991866206: 11032: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309f40|s1'
-991866206: 11033: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309f60|s1'
-991866206: 11034: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8309f80|s1'
-991866206: 11035: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8309fa0|s1'
-991866206: 11036: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8309fc0|s1'
-991866206: 11037: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8309fe0|s1'
-991866206: 11038: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b000|s1'
-991866206: 11039: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300dc0|s1'
-991866206: 11040: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307b00|s1'
-991866206: 11041: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b020|s1'
-991866206: 11042: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b040|s1'
-991866206: 11043: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b060|s1'
-991866206: 11044: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b080|s1'
-991866206: 11045: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b0a0|s1'
-991866206: 11046: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b0c0|s1'
-991866206: 11047: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830b0e0|s1'
-991866206: 11048: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x830b100|s1'
-991866206: 11049: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830b120|s1'
-991866206: 11050: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x830b140|s1'
-991866206: 11051: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x830b160|s1'
-991866206: 11052: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b180|s1'
-991866206: 11053: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300e00|s1'
-991866206: 11054: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307b80|s1'
-991866206: 11055: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b1a0|s1'
-991866206: 11056: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b1c0|s1'
-991866206: 11057: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b1e0|s1'
-991866206: 11058: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b200|s1'
-991866206: 11059: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b220|s1'
-991866206: 11060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b240|s1'
-991866206: 11061: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b260|s1'
-991866206: 11062: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300e40|s1'
-991866206: 11063: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307c00|s1'
-991866206: 11064: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b280|s1'
-991866206: 11065: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b2a0|s1'
-991866206: 11066: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b2c0|s1'
-991866206: 11067: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b2e0|s1'
-991866206: 11068: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b300|s1'
-991866206: 11069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b320|s1'
-991866206: 11070: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830b340|s1'
-991866206: 11071: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x830b360|s1'
-991866206: 11072: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830b380|s1'
-991866206: 11073: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830b3a0|s1'
-991866206: 11074: *** alloc: at 'ctbase.i:1790' for 12 bytes, got '0x830b3c0|s1'
-991866206: 11075: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830b3e0|s1'
-991866206: 11076: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x830b400|s1'
-991866206: 11077: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x830b420|s1'
-991866206: 11078: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b440|s1'
-991866206: 11079: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300e80|s1'
-991866206: 11080: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307c80|s1'
-991866206: 11081: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b460|s1'
-991866206: 11082: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b480|s1'
-991866206: 11083: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b4a0|s1'
-991866206: 11084: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b4c0|s1'
-991866206: 11085: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b4e0|s1'
-991866206: 11086: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b500|s1'
-991866206: 11087: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b520|s1'
-991866206: 11088: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b540|s1'
-991866206: 11089: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b560|s1'
-991866206: 11090: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300ec0|s1'
-991866206: 11091: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307d00|s1'
-991866206: 11092: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b580|s1'
-991866206: 11093: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b5a0|s1'
-991866206: 11094: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b5c0|s1'
-991866206: 11095: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b5e0|s1'
-991866206: 11096: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b600|s1'
-991866206: 11097: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b620|s1'
-991866206: 11098: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b640|s1'
-991866206: 11099: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300f00|s1'
-991866206: 11100: checking heap
-991866206: 11100: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307d80|s1'
-991866206: 11101: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b660|s1'
-991866206: 11102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b680|s1'
-991866206: 11103: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b6a0|s1'
-991866206: 11104: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b6c0|s1'
-991866206: 11105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b6e0|s1'
-991866206: 11106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b700|s1'
-991866206: 11107: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830b720|s1'
-991866206: 11108: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x830b740|s1'
-991866206: 11109: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830b760|s1'
-991866206: 11110: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x830b780|s1'
-991866206: 11111: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x830b7a0|s1'
-991866206: 11112: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b7c0|s1'
-991866206: 11113: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300f40|s1'
-991866206: 11114: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307e00|s1'
-991866206: 11115: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b7e0|s1'
-991866206: 11116: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b800|s1'
-991866206: 11117: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b820|s1'
-991866206: 11118: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b840|s1'
-991866206: 11119: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b860|s1'
-991866206: 11120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b880|s1'
-991866206: 11121: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b8a0|s1'
-991866206: 11122: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b8c0|s1'
-991866206: 11123: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b8e0|s1'
-991866206: 11124: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300f80|s1'
-991866206: 11125: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307e80|s1'
-991866206: 11126: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b900|s1'
-991866206: 11127: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b920|s1'
-991866206: 11128: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830b940|s1'
-991866206: 11129: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830b960|s1'
-991866206: 11130: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b980|s1'
-991866206: 11131: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b9a0|s1'
-991866206: 11132: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830b9c0|s1'
-991866206: 11133: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8300fc0|s1'
-991866206: 11134: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307f00|s1'
-991866206: 11135: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830b9e0|s1'
-991866206: 11136: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830ba00|s1'
-991866206: 11137: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830ba20|s1'
-991866206: 11138: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830ba40|s1'
-991866206: 11139: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830ba60|s1'
-991866206: 11140: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830ba80|s1'
-991866206: 11141: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830baa0|s1'
-991866206: 11142: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x830bac0|s1'
-991866206: 11143: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830bae0|s1'
-991866206: 11144: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x830bb00|s1'
-991866206: 11145: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x830bb20|s1'
-991866206: 11146: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bb40|s1'
-991866206: 11147: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d000|s1'
-991866206: 11148: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8307f80|s1'
-991866206: 11149: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bb60|s1'
-991866206: 11150: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bb80|s1'
-991866206: 11151: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830bba0|s1'
-991866206: 11152: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830bbc0|s1'
-991866206: 11153: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bbe0|s1'
-991866206: 11154: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bc00|s1'
-991866206: 11155: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bc20|s1'
-991866206: 11156: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bc40|s1'
-991866206: 11157: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bc60|s1'
-991866206: 11158: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d040|s1'
-991866206: 11159: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e000|s1'
-991866206: 11160: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bc80|s1'
-991866206: 11161: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bca0|s1'
-991866206: 11162: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830bcc0|s1'
-991866206: 11163: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830bce0|s1'
-991866206: 11164: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bd00|s1'
-991866206: 11165: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bd20|s1'
-991866206: 11166: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bd40|s1'
-991866206: 11167: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d080|s1'
-991866206: 11168: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e080|s1'
-991866206: 11169: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bd60|s1'
-991866206: 11170: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bd80|s1'
-991866206: 11171: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830bda0|s1'
-991866206: 11172: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830bdc0|s1'
-991866206: 11173: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bde0|s1'
-991866206: 11174: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830be00|s1'
-991866206: 11175: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830be20|s1'
-991866206: 11176: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x830be40|s1'
-991866206: 11177: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830be60|s1'
-991866206: 11178: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x830be80|s1'
-991866206: 11179: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x830bea0|s1'
-991866206: 11180: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bec0|s1'
-991866206: 11181: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d0c0|s1'
-991866206: 11182: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e100|s1'
-991866206: 11183: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bee0|s1'
-991866206: 11184: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bf00|s1'
-991866206: 11185: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x830bf20|s1'
-991866206: 11186: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x830bf40|s1'
-991866206: 11187: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x830bf60|s1'
-991866206: 11188: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x830bf80|s1'
-991866206: 11189: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x830bfa0|s1'
-991866206: 11190: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x830bfc0|s1'
-991866206: 11191: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x830bfe0|s1'
-991866206: 11192: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8310000|s1'
-991866206: 11193: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8310020|s1'
-991866206: 11194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310040|s1'
-991866206: 11195: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d100|s1'
-991866206: 11196: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e180|s1'
-991866206: 11197: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310060|s1'
-991866206: 11198: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310080|s1'
-991866206: 11199: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83100a0|s1'
-991866206: 11200: checking heap
-991866206: 11200: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83100c0|s1'
-991866206: 11201: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83100e0|s1'
-991866206: 11202: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310100|s1'
-991866206: 11203: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8310120|s1'
-991866206: 11204: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8310140|s1'
-991866206: 11205: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8310160|s1'
-991866206: 11206: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8310180|s1'
-991866206: 11207: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83101a0|s1'
-991866206: 11208: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83101c0|s1'
-991866206: 11209: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d140|s1'
-991866206: 11210: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e200|s1'
-991866206: 11211: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83101e0|s1'
-991866206: 11212: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310200|s1'
-991866206: 11213: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310220|s1'
-991866206: 11214: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310240|s1'
-991866206: 11215: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310260|s1'
-991866206: 11216: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310280|s1'
-991866206: 11217: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83102a0|s1'
-991866206: 11218: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83102c0|s1'
-991866206: 11219: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83102e0|s1'
-991866206: 11220: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8310300|s1'
-991866206: 11221: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8310320|s1'
-991866206: 11222: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310340|s1'
-991866206: 11223: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d180|s1'
-991866206: 11224: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e280|s1'
-991866206: 11225: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310360|s1'
-991866206: 11226: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310380|s1'
-991866206: 11227: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83103a0|s1'
-991866206: 11228: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83103c0|s1'
-991866206: 11229: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83103e0|s1'
-991866206: 11230: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310400|s1'
-991866206: 11231: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8310420|s1'
-991866206: 11232: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8310440|s1'
-991866206: 11233: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8310460|s1'
-991866206: 11234: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8310480|s1'
-991866206: 11235: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83104a0|s1'
-991866206: 11236: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83104c0|s1'
-991866206: 11237: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d1c0|s1'
-991866206: 11238: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e300|s1'
-991866206: 11239: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83104e0|s1'
-991866206: 11240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310500|s1'
-991866206: 11241: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310520|s1'
-991866206: 11242: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310540|s1'
-991866206: 11243: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310560|s1'
-991866206: 11244: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310580|s1'
-991866206: 11245: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83105a0|s1'
-991866206: 11246: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83105c0|s1'
-991866206: 11247: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83105e0|s1'
-991866206: 11248: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8310600|s1'
-991866206: 11249: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8310620|s1'
-991866206: 11250: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8310640|s1'
-991866206: 11251: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8310660|s1'
-991866206: 11252: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x8310680|s1'
-991866206: 11253: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83106a0|s1'
-991866206: 11254: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83106c0|s1'
-991866206: 11255: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83106e0|s1'
-991866206: 11256: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310700|s1'
-991866206: 11257: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d200|s1'
-991866206: 11258: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e380|s1'
-991866206: 11259: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310720|s1'
-991866206: 11260: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310740|s1'
-991866206: 11261: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310760|s1'
-991866206: 11262: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310780|s1'
-991866206: 11263: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83107a0|s1'
-991866206: 11264: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83107c0|s1'
-991866206: 11265: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83107e0|s1'
-991866206: 11266: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310800|s1'
-991866206: 11267: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d240|s1'
-991866206: 11268: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e400|s1'
-991866206: 11269: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310820|s1'
-991866206: 11270: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310840|s1'
-991866206: 11271: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310860|s1'
-991866206: 11272: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310880|s1'
-991866206: 11273: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83108a0|s1'
-991866206: 11274: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83108c0|s1'
-991866206: 11275: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83108e0|s1'
-991866206: 11276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310900|s1'
-991866206: 11277: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d280|s1'
-991866206: 11278: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e480|s1'
-991866206: 11279: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310920|s1'
-991866206: 11280: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310940|s1'
-991866206: 11281: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310960|s1'
-991866206: 11282: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310980|s1'
-991866206: 11283: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83109a0|s1'
-991866206: 11284: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83109c0|s1'
-991866206: 11285: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83109e0|s1'
-991866206: 11286: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310a00|s1'
-991866206: 11287: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d2c0|s1'
-991866206: 11288: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e500|s1'
-991866206: 11289: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310a20|s1'
-991866206: 11290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310a40|s1'
-991866206: 11291: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310a60|s1'
-991866206: 11292: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310a80|s1'
-991866206: 11293: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310aa0|s1'
-991866206: 11294: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310ac0|s1'
-991866206: 11295: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8310ae0|s1'
-991866206: 11296: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310b00|s1'
-991866206: 11297: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d300|s1'
-991866206: 11298: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e580|s1'
-991866206: 11299: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310b20|s1'
-991866206: 11300: checking heap
-991866206: 11300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310b40|s1'
-991866206: 11301: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310b60|s1'
-991866206: 11302: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310b80|s1'
-991866206: 11303: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310ba0|s1'
-991866206: 11304: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310bc0|s1'
-991866206: 11305: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8310be0|s1'
-991866206: 11306: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310c00|s1'
-991866206: 11307: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d340|s1'
-991866206: 11308: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e600|s1'
-991866206: 11309: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310c20|s1'
-991866206: 11310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310c40|s1'
-991866206: 11311: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310c60|s1'
-991866206: 11312: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310c80|s1'
-991866206: 11313: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310ca0|s1'
-991866206: 11314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310cc0|s1'
-991866206: 11315: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8310ce0|s1'
-991866206: 11316: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310d00|s1'
-991866206: 11317: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d380|s1'
-991866206: 11318: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e680|s1'
-991866206: 11319: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310d20|s1'
-991866206: 11320: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310d40|s1'
-991866206: 11321: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310d60|s1'
-991866206: 11322: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310d80|s1'
-991866206: 11323: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310da0|s1'
-991866206: 11324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310dc0|s1'
-991866206: 11325: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8310de0|s1'
-991866206: 11326: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310e00|s1'
-991866206: 11327: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d3c0|s1'
-991866206: 11328: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e700|s1'
-991866206: 11329: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310e20|s1'
-991866206: 11330: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310e40|s1'
-991866206: 11331: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310e60|s1'
-991866206: 11332: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310e80|s1'
-991866206: 11333: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310ea0|s1'
-991866206: 11334: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310ec0|s1'
-991866206: 11335: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8310ee0|s1'
-991866206: 11336: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310f00|s1'
-991866206: 11337: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d400|s1'
-991866206: 11338: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e780|s1'
-991866206: 11339: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310f20|s1'
-991866206: 11340: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310f40|s1'
-991866206: 11341: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8310f60|s1'
-991866206: 11342: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8310f80|s1'
-991866206: 11343: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8310fa0|s1'
-991866206: 11344: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8310fc0|s1'
-991866206: 11345: *** alloc: at 'uentryList.c:70' for 64 bytes, got '0x830d440|s1'
-991866206: 11346: *** free: at 'uentryList.c:78' pnt '0x83106c0|s2': size 32, alloced at 'uentryList.c:39'
-991866206: 11347: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8310fe0|s1'
-991866206: 11348: *** alloc: at 'ctbase.i:1826' for 8 bytes, got '0x8312000|s1'
-991866206: 11349: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312020|s1'
-991866206: 11350: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312040|s1'
-991866206: 11351: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312060|s1'
-991866206: 11352: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312080|s1'
-991866206: 11353: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83120a0|s1'
-991866206: 11354: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83120c0|s1'
-991866206: 11355: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83120e0|s1'
-991866206: 11356: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312100|s1'
-991866206: 11357: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312120|s1'
-991866206: 11358: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312140|s1'
-991866206: 11359: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312160|s1'
-991866206: 11360: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312180|s1'
-991866206: 11361: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83121a0|s1'
-991866206: 11362: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83121c0|s1'
-991866206: 11363: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d480|s1'
-991866206: 11364: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e800|s1'
-991866206: 11365: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83121e0|s1'
-991866206: 11366: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312200|s1'
-991866206: 11367: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312220|s1'
-991866206: 11368: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312240|s1'
-991866206: 11369: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312260|s1'
-991866206: 11370: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312280|s1'
-991866206: 11371: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83122a0|s1'
-991866206: 11372: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d4c0|s1'
-991866206: 11373: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e880|s1'
-991866206: 11374: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83122c0|s1'
-991866206: 11375: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83122e0|s1'
-991866206: 11376: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312300|s1'
-991866206: 11377: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312320|s1'
-991866206: 11378: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312340|s1'
-991866206: 11379: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312360|s1'
-991866206: 11380: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312380|s1'
-991866206: 11381: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83123a0|s1'
-991866206: 11382: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83123c0|s1'
-991866206: 11383: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83123e0|s1'
-991866206: 11384: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312400|s1'
-991866206: 11385: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312420|s1'
-991866206: 11386: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d500|s1'
-991866206: 11387: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e900|s1'
-991866206: 11388: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312440|s1'
-991866206: 11389: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312460|s1'
-991866206: 11390: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312480|s1'
-991866206: 11391: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83124a0|s1'
-991866206: 11392: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83124c0|s1'
-991866206: 11393: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83124e0|s1'
-991866206: 11394: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312500|s1'
-991866206: 11395: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d540|s1'
-991866206: 11396: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830e980|s1'
-991866206: 11397: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312520|s1'
-991866206: 11398: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312540|s1'
-991866206: 11399: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312560|s1'
-991866206: 11400: checking heap
-991866206: 11400: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312580|s1'
-991866206: 11401: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83125a0|s1'
-991866206: 11402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83125c0|s1'
-991866206: 11403: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83125e0|s1'
-991866206: 11404: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312600|s1'
-991866206: 11405: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312620|s1'
-991866206: 11406: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312640|s1'
-991866206: 11407: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312660|s1'
-991866206: 11408: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312680|s1'
-991866206: 11409: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d580|s1'
-991866206: 11410: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ea00|s1'
-991866206: 11411: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83126a0|s1'
-991866206: 11412: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83126c0|s1'
-991866206: 11413: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83126e0|s1'
-991866206: 11414: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312700|s1'
-991866206: 11415: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312720|s1'
-991866206: 11416: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312740|s1'
-991866206: 11417: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312760|s1'
-991866206: 11418: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312780|s1'
-991866206: 11419: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83127a0|s1'
-991866206: 11420: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83127c0|s1'
-991866206: 11421: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83127e0|s1'
-991866206: 11422: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312800|s1'
-991866206: 11423: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d5c0|s1'
-991866206: 11424: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ea80|s1'
-991866206: 11425: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312820|s1'
-991866206: 11426: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312840|s1'
-991866206: 11427: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312860|s1'
-991866206: 11428: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312880|s1'
-991866206: 11429: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83128a0|s1'
-991866206: 11430: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83128c0|s1'
-991866206: 11431: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83128e0|s1'
-991866206: 11432: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312900|s1'
-991866206: 11433: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312920|s1'
-991866206: 11434: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312940|s1'
-991866206: 11435: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312960|s1'
-991866206: 11436: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312980|s1'
-991866206: 11437: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x83129a0|s1'
-991866206: 11438: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83129c0|s1'
-991866206: 11439: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d600|s1'
-991866206: 11440: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830eb00|s1'
-991866206: 11441: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83129e0|s1'
-991866206: 11442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312a00|s1'
-991866206: 11443: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312a20|s1'
-991866206: 11444: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312a40|s1'
-991866206: 11445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312a60|s1'
-991866206: 11446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312a80|s1'
-991866206: 11447: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312aa0|s1'
-991866206: 11448: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312ac0|s1'
-991866206: 11449: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312ae0|s1'
-991866206: 11450: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312b00|s1'
-991866206: 11451: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312b20|s1'
-991866206: 11452: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312b40|s1'
-991866206: 11453: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312b60|s1'
-991866206: 11454: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312b80|s1'
-991866206: 11455: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d640|s1'
-991866206: 11456: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830eb80|s1'
-991866206: 11457: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312ba0|s1'
-991866206: 11458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312bc0|s1'
-991866206: 11459: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312be0|s1'
-991866206: 11460: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312c00|s1'
-991866206: 11461: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312c20|s1'
-991866206: 11462: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312c40|s1'
-991866206: 11463: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312c60|s1'
-991866206: 11464: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312c80|s1'
-991866206: 11465: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312ca0|s1'
-991866206: 11466: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312cc0|s1'
-991866206: 11467: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312ce0|s1'
-991866206: 11468: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312d00|s1'
-991866206: 11469: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312d20|s1'
-991866206: 11470: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312d40|s1'
-991866206: 11471: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d680|s1'
-991866206: 11472: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ec00|s1'
-991866206: 11473: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312d60|s1'
-991866206: 11474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312d80|s1'
-991866206: 11475: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312da0|s1'
-991866206: 11476: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312dc0|s1'
-991866206: 11477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312de0|s1'
-991866206: 11478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312e00|s1'
-991866206: 11479: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312e20|s1'
-991866206: 11480: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312e40|s1'
-991866206: 11481: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312e60|s1'
-991866206: 11482: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8312e80|s1'
-991866206: 11483: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8312ea0|s1'
-991866206: 11484: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312ec0|s1'
-991866206: 11485: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d6c0|s1'
-991866206: 11486: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ec80|s1'
-991866206: 11487: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312ee0|s1'
-991866206: 11488: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312f00|s1'
-991866206: 11489: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8312f20|s1'
-991866206: 11490: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8312f40|s1'
-991866206: 11491: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8312f60|s1'
-991866206: 11492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8312f80|s1'
-991866206: 11493: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8312fa0|s1'
-991866206: 11494: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8312fc0|s1'
-991866206: 11495: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8312fe0|s1'
-991866206: 11496: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83106c0|s3'
-991866206: 11497: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314000|s1'
-991866206: 11498: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314020|s1'
-991866206: 11499: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d700|s1'
-991866206: 11500: checking heap
-991866206: 11500: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ed00|s1'
-991866206: 11501: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314040|s1'
-991866206: 11502: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314060|s1'
-991866206: 11503: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314080|s1'
-991866206: 11504: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83140a0|s1'
-991866206: 11505: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83140c0|s1'
-991866206: 11506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83140e0|s1'
-991866206: 11507: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314100|s1'
-991866206: 11508: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314120|s1'
-991866206: 11509: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314140|s1'
-991866206: 11510: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314160|s1'
-991866206: 11511: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314180|s1'
-991866206: 11512: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83141a0|s1'
-991866206: 11513: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d740|s1'
-991866206: 11514: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ed80|s1'
-991866206: 11515: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83141c0|s1'
-991866206: 11516: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83141e0|s1'
-991866206: 11517: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314200|s1'
-991866206: 11518: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314220|s1'
-991866206: 11519: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314240|s1'
-991866206: 11520: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314260|s1'
-991866206: 11521: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314280|s1'
-991866206: 11522: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83142a0|s1'
-991866206: 11523: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83142c0|s1'
-991866206: 11524: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83142e0|s1'
-991866206: 11525: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314300|s1'
-991866206: 11526: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314320|s1'
-991866206: 11527: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d780|s1'
-991866206: 11528: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ee00|s1'
-991866206: 11529: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314340|s1'
-991866206: 11530: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314360|s1'
-991866206: 11531: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314380|s1'
-991866206: 11532: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83143a0|s1'
-991866206: 11533: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83143c0|s1'
-991866206: 11534: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83143e0|s1'
-991866206: 11535: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314400|s1'
-991866206: 11536: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314420|s1'
-991866206: 11537: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314440|s1'
-991866206: 11538: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314460|s1'
-991866206: 11539: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314480|s1'
-991866206: 11540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83144a0|s1'
-991866206: 11541: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d7c0|s1'
-991866206: 11542: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ee80|s1'
-991866206: 11543: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83144c0|s1'
-991866206: 11544: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83144e0|s1'
-991866206: 11545: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314500|s1'
-991866206: 11546: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314520|s1'
-991866206: 11547: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314540|s1'
-991866206: 11548: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314560|s1'
-991866206: 11549: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314580|s1'
-991866206: 11550: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83145a0|s1'
-991866206: 11551: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83145c0|s1'
-991866206: 11552: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83145e0|s1'
-991866206: 11553: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314600|s1'
-991866206: 11554: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314620|s1'
-991866206: 11555: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d800|s1'
-991866206: 11556: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ef00|s1'
-991866206: 11557: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314640|s1'
-991866206: 11558: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314660|s1'
-991866206: 11559: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314680|s1'
-991866206: 11560: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83146a0|s1'
-991866206: 11561: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83146c0|s1'
-991866206: 11562: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83146e0|s1'
-991866206: 11563: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314700|s1'
-991866206: 11564: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314720|s1'
-991866206: 11565: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314740|s1'
-991866206: 11566: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314760|s1'
-991866206: 11567: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314780|s1'
-991866206: 11568: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83147a0|s1'
-991866206: 11569: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d840|s1'
-991866206: 11570: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x830ef80|s1'
-991866206: 11571: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83147c0|s1'
-991866206: 11572: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83147e0|s1'
-991866206: 11573: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314800|s1'
-991866206: 11574: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314820|s1'
-991866206: 11575: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314840|s1'
-991866206: 11576: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314860|s1'
-991866206: 11577: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314880|s1'
-991866206: 11578: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83148a0|s1'
-991866206: 11579: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83148c0|s1'
-991866206: 11580: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x83148e0|s1'
-991866206: 11581: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314900|s1'
-991866206: 11582: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314920|s1'
-991866206: 11583: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d880|s1'
-991866206: 11584: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316000|s1'
-991866206: 11585: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314940|s1'
-991866206: 11586: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314960|s1'
-991866206: 11587: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314980|s1'
-991866206: 11588: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83149a0|s1'
-991866206: 11589: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83149c0|s1'
-991866206: 11590: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83149e0|s1'
-991866206: 11591: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314a00|s1'
-991866206: 11592: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314a20|s1'
-991866206: 11593: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314a40|s1'
-991866206: 11594: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314a60|s1'
-991866206: 11595: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314a80|s1'
-991866206: 11596: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314aa0|s1'
-991866206: 11597: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d8c0|s1'
-991866206: 11598: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316080|s1'
-991866206: 11599: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314ac0|s1'
-991866206: 11600: checking heap
-991866206: 11600: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314ae0|s1'
-991866206: 11601: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314b00|s1'
-991866206: 11602: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314b20|s1'
-991866206: 11603: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314b40|s1'
-991866206: 11604: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314b60|s1'
-991866206: 11605: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314b80|s1'
-991866206: 11606: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314ba0|s1'
-991866206: 11607: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314bc0|s1'
-991866206: 11608: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314be0|s1'
-991866206: 11609: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314c00|s1'
-991866206: 11610: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314c20|s1'
-991866206: 11611: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d900|s1'
-991866206: 11612: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316100|s1'
-991866206: 11613: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314c40|s1'
-991866206: 11614: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314c60|s1'
-991866206: 11615: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314c80|s1'
-991866206: 11616: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314ca0|s1'
-991866206: 11617: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314cc0|s1'
-991866206: 11618: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314ce0|s1'
-991866206: 11619: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314d00|s1'
-991866206: 11620: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314d20|s1'
-991866206: 11621: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314d40|s1'
-991866206: 11622: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314d60|s1'
-991866206: 11623: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314d80|s1'
-991866206: 11624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314da0|s1'
-991866206: 11625: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d940|s1'
-991866206: 11626: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316180|s1'
-991866206: 11627: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314dc0|s1'
-991866206: 11628: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314de0|s1'
-991866206: 11629: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314e00|s1'
-991866206: 11630: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314e20|s1'
-991866206: 11631: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314e40|s1'
-991866206: 11632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314e60|s1'
-991866206: 11633: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8314e80|s1'
-991866206: 11634: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8314ea0|s1'
-991866206: 11635: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8314ec0|s1'
-991866206: 11636: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8314ee0|s1'
-991866206: 11637: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8314f00|s1'
-991866206: 11638: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314f20|s1'
-991866206: 11639: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d980|s1'
-991866206: 11640: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316200|s1'
-991866206: 11641: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314f40|s1'
-991866206: 11642: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314f60|s1'
-991866206: 11643: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8314f80|s1'
-991866206: 11644: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8314fa0|s1'
-991866206: 11645: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8314fc0|s1'
-991866206: 11646: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8314fe0|s1'
-991866206: 11647: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318000|s1'
-991866206: 11648: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318020|s1'
-991866206: 11649: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318040|s1'
-991866206: 11650: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830d9c0|s1'
-991866206: 11651: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316280|s1'
-991866206: 11652: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318060|s1'
-991866206: 11653: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318080|s1'
-991866206: 11654: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83180a0|s1'
-991866206: 11655: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83180c0|s1'
-991866206: 11656: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83180e0|s1'
-991866206: 11657: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318100|s1'
-991866206: 11658: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318120|s1'
-991866206: 11659: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830da00|s1'
-991866206: 11660: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316300|s1'
-991866206: 11661: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318140|s1'
-991866206: 11662: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318160|s1'
-991866206: 11663: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8318180|s1'
-991866206: 11664: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83181a0|s1'
-991866206: 11665: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83181c0|s1'
-991866206: 11666: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83181e0|s1'
-991866206: 11667: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318200|s1'
-991866206: 11668: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830da40|s1'
-991866206: 11669: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316380|s1'
-991866206: 11670: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318220|s1'
-991866206: 11671: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318240|s1'
-991866206: 11672: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8318260|s1'
-991866206: 11673: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8318280|s1'
-991866206: 11674: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83182a0|s1'
-991866206: 11675: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83182c0|s1'
-991866206: 11676: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83182e0|s1'
-991866206: 11677: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8318300|s1'
-991866206: 11678: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8318320|s1'
-991866206: 11679: *** alloc: at 'uentryList.c:34' for 16 bytes, got '0x8318340|s1'
-991866206: 11680: *** alloc: at 'uentryList.c:39' for 32 bytes, got '0x8318360|s1'
-991866206: 11681: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318380|s1'
-991866206: 11682: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830da80|s1'
-991866206: 11683: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316400|s1'
-991866206: 11684: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83183a0|s1'
-991866206: 11685: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83183c0|s1'
-991866206: 11686: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83183e0|s1'
-991866206: 11687: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8318400|s1'
-991866206: 11688: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318420|s1'
-991866206: 11689: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318440|s1'
-991866206: 11690: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318460|s1'
-991866206: 11691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318480|s1'
-991866206: 11692: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83184a0|s1'
-991866206: 11693: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dac0|s1'
-991866206: 11694: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316480|s1'
-991866206: 11695: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83184c0|s1'
-991866206: 11696: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83184e0|s1'
-991866206: 11697: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8318500|s1'
-991866206: 11698: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8318520|s1'
-991866206: 11699: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318540|s1'
-991866206: 11700: checking heap
-991866206: 11700: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318560|s1'
-991866206: 11701: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318580|s1'
-991866206: 11702: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830db00|s1'
-991866206: 11703: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316500|s1'
-991866206: 11704: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83185a0|s1'
-991866206: 11705: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83185c0|s1'
-991866206: 11706: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83185e0|s1'
-991866206: 11707: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8318600|s1'
-991866206: 11708: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318620|s1'
-991866206: 11709: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318640|s1'
-991866206: 11710: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318660|s1'
-991866206: 11711: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830db40|s1'
-991866206: 11712: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316580|s1'
-991866206: 11713: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318680|s1'
-991866206: 11714: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83186a0|s1'
-991866206: 11715: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83186c0|s1'
-991866206: 11716: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83186e0|s1'
-991866206: 11717: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318700|s1'
-991866206: 11718: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318720|s1'
-991866206: 11719: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x8318740|s1'
-991866206: 11720: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x8318760|s1'
-991866206: 11721: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x8318780|s1'
-991866206: 11722: *** free: at 'cttable.i:474' pnt '0x822e000|s2': size 16385, alloced at 'ra=0x80e68d7'
-991866206: 11723: *** alloc: at 'ra=0x80e68d7' for 16385 bytes, got '0x8319000|s1'
-991866206: 11724: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x83187a0|s1'
-991866206: 11725: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x83187c0|s1'
-991866206: 11726: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x83187e0|s1'
-991866206: 11727: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318800|s1'
-991866206: 11728: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x8318820|s1'
-991866206: 11729: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318840|s1'
-991866206: 11730: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x8318860|s1'
-991866206: 11731: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318880|s1'
-991866206: 11732: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x83188a0|s1'
-991866206: 11733: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x83188c0|s1'
-991866206: 11734: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x83188e0|s1'
-991866206: 11735: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318900|s1'
-991866206: 11736: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x8318920|s1'
-991866206: 11737: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318940|s1'
-991866206: 11738: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x8318960|s1'
-991866206: 11739: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318980|s1'
-991866206: 11740: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x83189a0|s1'
-991866206: 11741: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x83189c0|s1'
-991866206: 11742: *** alloc: at 'usymIdSet.c:60' for 32 bytes, got '0x83189e0|s1'
-991866206: 11743: *** free: at 'usymIdSet.c:67' pnt '0x83189c0|s2': size 16, alloced at 'usymIdSet.c:48'
-991866206: 11744: *** alloc: at 'usymIdSet.c:44' for 12 bytes, got '0x8318a00|s1'
-991866206: 11745: *** alloc: at 'usymIdSet.c:48' for 16 bytes, got '0x8318a20|s1'
-991866206: 11746: *** alloc: at 'ra=0x80e68d7' for 16385 bytes, got '0x822e000|s3'
-991866206: 11747: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8318a40|s1'
-991866206: 11748: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318a60|s1'
-991866206: 11749: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830db80|s1'
-991866206: 11750: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316600|s1'
-991866206: 11751: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318a80|s1'
-991866206: 11752: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8318aa0|s1'
-991866206: 11753: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8318ac0|s1'
-991866206: 11754: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8318ae0|s1'
-991866206: 11755: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8318b00|s1'
-991866206: 11756: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8318b20|s1'
-991866206: 11757: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8318b40|s1'
-991866206: 11758: *** alloc: at 'multiVal.c:39' for 12 bytes, got '0x8318b60|s1'
-991866206: 11759: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8318b80|s1'
-991866206: 11760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318ba0|s1'
-991866206: 11761: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dbc0|s1'
-991866206: 11762: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316680|s1'
-991866206: 11763: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83189c0|s3'
-991866206: 11764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318bc0|s1'
-991866206: 11765: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8318be0|s1'
-991866206: 11766: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8318c00|s1'
-991866206: 11767: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8318c20|s1'
-991866206: 11768: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8318c40|s1'
-991866206: 11769: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8318c60|s1'
-991866206: 11770: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8318c80|s1'
-991866206: 11771: *** alloc: at 'multiVal.c:39' for 12 bytes, got '0x8318ca0|s1'
-991866206: 11772: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8318cc0|s1'
-991866206: 11773: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318ce0|s1'
-991866206: 11774: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dc00|s1'
-991866206: 11775: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316700|s1'
-991866206: 11776: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318d00|s1'
-991866206: 11777: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318d20|s1'
-991866206: 11778: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8318d40|s1'
-991866206: 11779: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8318d60|s1'
-991866206: 11780: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8318d80|s1'
-991866206: 11781: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8318da0|s1'
-991866206: 11782: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8318dc0|s1'
-991866206: 11783: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8318de0|s1'
-991866206: 11784: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316780|s1'
-991866206: 11785: *** alloc: at 'sRef.c:4174' for 4 bytes, got '0x8318e00|s1'
-991866206: 11786: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dc40|s1'
-991866206: 11787: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8318e20|s1'
-991866206: 11788: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x8318e40|s1'
-991866206: 11789: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x8318e60|s1'
-991866206: 11790: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318e80|s1'
-991866206: 11791: *** alloc: at 'filelocList.c:46' for 12 bytes, got '0x8318ea0|s1'
-991866206: 11792: *** alloc: at 'filelocList.c:50' for 32 bytes, got '0x8318ec0|s1'
-991866206: 11793: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8318ee0|s1'
-991866206: 11794: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8318f00|s1'
-991866206: 11795: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8318f20|s1'
-991866206: 11796: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8318f40|s1'
-991866206: 11797: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8318f60|s1'
-991866206: 11798: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318f80|s1'
-991866206: 11799: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dc80|s1'
-991866206: 11800: checking heap
-991866206: 11800: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316800|s1'
-991866206: 11801: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8318fa0|s1'
-991866206: 11802: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8318fc0|s1'
-991866206: 11803: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8318fe0|s1'
-991866206: 11804: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x831f000|s1'
-991866206: 11805: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831f020|s1'
-991866206: 11806: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f040|s1'
-991866206: 11807: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f060|s1'
-991866206: 11808: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f080|s1'
-991866206: 11809: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831f0a0|s1'
-991866206: 11810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f0c0|s1'
-991866206: 11811: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dcc0|s1'
-991866206: 11812: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316880|s1'
-991866206: 11813: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x831f0e0|s1'
-991866206: 11814: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f100|s1'
-991866206: 11815: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x831f120|s1'
-991866206: 11816: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x831f140|s1'
-991866206: 11817: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831f160|s1'
-991866206: 11818: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f180|s1'
-991866206: 11819: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f1a0|s1'
-991866206: 11820: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f1c0|s1'
-991866206: 11821: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831f1e0|s1'
-991866206: 11822: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dd00|s1'
-991866206: 11823: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f200|s1'
-991866206: 11824: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316900|s1'
-991866206: 11825: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x831f220|s1'
-991866206: 11826: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f240|s1'
-991866206: 11827: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x831f260|s1'
-991866206: 11828: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x831f280|s1'
-991866206: 11829: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x831f2a0|s1'
-991866206: 11830: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x831f2c0|s1'
-991866206: 11831: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831f2e0|s1'
-991866206: 11832: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f300|s1'
-991866206: 11833: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f320|s1'
-991866206: 11834: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f340|s1'
-991866206: 11835: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x831f360|s1'
-991866206: 11836: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dd40|s1'
-991866206: 11837: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f380|s1'
-991866206: 11838: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316980|s1'
-991866206: 11839: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x831f3a0|s1'
-991866206: 11840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f3c0|s1'
-991866206: 11841: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x831f3e0|s1'
-991866206: 11842: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x831f400|s1'
-991866206: 11843: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x831f420|s1'
-991866206: 11844: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x831f440|s1'
-991866206: 11845: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x831f460|s1'
-991866206: 11846: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f480|s1'
-991866206: 11847: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f4a0|s1'
-991866206: 11848: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f4c0|s1'
-991866206: 11849: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x831f4e0|s1'
-991866206: 11850: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f500|s1'
-991866206: 11851: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dd80|s1'
-991866206: 11852: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316a00|s1'
-991866206: 11853: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x831f520|s1'
-991866206: 11854: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f540|s1'
-991866206: 11855: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x831f560|s1'
-991866206: 11856: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x831f580|s1'
-991866206: 11857: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x831f5a0|s1'
-991866206: 11858: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f5c0|s1'
-991866206: 11859: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f5e0|s1'
-991866206: 11860: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f600|s1'
-991866206: 11861: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x831f620|s1'
-991866206: 11862: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f640|s1'
-991866206: 11863: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830ddc0|s1'
-991866206: 11864: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316a80|s1'
-991866206: 11865: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x831f660|s1'
-991866206: 11866: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f680|s1'
-991866206: 11867: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x831f6a0|s1'
-991866206: 11868: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x831f6c0|s1'
-991866206: 11869: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x831f6e0|s1'
-991866206: 11870: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f700|s1'
-991866206: 11871: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f720|s1'
-991866206: 11872: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f740|s1'
-991866206: 11873: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x831f760|s1'
-991866206: 11874: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f780|s1'
-991866206: 11875: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830de00|s1'
-991866206: 11876: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316b00|s1'
-991866206: 11877: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f7a0|s1'
-991866206: 11878: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x831f7c0|s1'
-991866206: 11879: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x831f7e0|s1'
-991866206: 11880: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x831f800|s1'
-991866206: 11881: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f820|s1'
-991866206: 11882: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f840|s1'
-991866206: 11883: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f860|s1'
-991866206: 11884: *** alloc: at 'ra=0x80e6889' for 17 bytes, got '0x831f880|s1'
-991866206: 11885: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f8a0|s1'
-991866206: 11886: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830de40|s1'
-991866206: 11887: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316b80|s1'
-991866206: 11888: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f8c0|s1'
-991866206: 11889: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x831f8e0|s1'
-991866206: 11890: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x831f900|s1'
-991866206: 11891: *** alloc: at 'ra=0x80e6889' for 17 bytes, got '0x831f920|s1'
-991866206: 11892: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831f940|s1'
-991866206: 11893: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831f960|s1'
-991866206: 11894: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831f980|s1'
-991866206: 11895: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x831f9a0|s1'
-991866206: 11896: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f9c0|s1'
-991866206: 11897: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830de80|s1'
-991866206: 11898: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316c00|s1'
-991866206: 11899: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831f9e0|s1'
-991866206: 11900: checking heap
-991866206: 11900: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x831fa00|s1'
-991866206: 11901: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x831fa20|s1'
-991866206: 11902: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x831fa40|s1'
-991866206: 11903: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831fa60|s1'
-991866206: 11904: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831fa80|s1'
-991866206: 11905: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831faa0|s1'
-991866206: 11906: *** alloc: at 'ra=0x80e6889' for 22 bytes, got '0x831fac0|s1'
-991866206: 11907: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831fae0|s1'
-991866206: 11908: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dec0|s1'
-991866206: 11909: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316c80|s1'
-991866206: 11910: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x831fb00|s1'
-991866206: 11911: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831fb20|s1'
-991866206: 11912: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x831fb40|s1'
-991866206: 11913: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x831fb60|s1'
-991866206: 11914: *** alloc: at 'ra=0x80e6889' for 22 bytes, got '0x831fb80|s1'
-991866206: 11915: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831fba0|s1'
-991866206: 11916: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831fbc0|s1'
-991866206: 11917: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831fbe0|s1'
-991866206: 11918: *** alloc: at 'ra=0x80e6889' for 20 bytes, got '0x831fc00|s1'
-991866206: 11919: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830df00|s1'
-991866206: 11920: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831fc20|s1'
-991866206: 11921: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316d00|s1'
-991866206: 11922: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x831fc40|s1'
-991866206: 11923: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831fc60|s1'
-991866206: 11924: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x831fc80|s1'
-991866206: 11925: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x831fca0|s1'
-991866206: 11926: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x831fcc0|s1'
-991866206: 11927: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x831fce0|s1'
-991866206: 11928: *** alloc: at 'ra=0x80e6889' for 20 bytes, got '0x831fd00|s1'
-991866206: 11929: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831fd20|s1'
-991866206: 11930: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831fd40|s1'
-991866206: 11931: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831fd60|s1'
-991866206: 11932: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831fd80|s1'
-991866206: 11933: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830df40|s1'
-991866206: 11934: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831fda0|s1'
-991866206: 11935: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316d80|s1'
-991866206: 11936: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x831fdc0|s1'
-991866206: 11937: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831fde0|s1'
-991866206: 11938: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x831fe00|s1'
-991866206: 11939: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x831fe20|s1'
-991866206: 11940: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x831fe40|s1'
-991866206: 11941: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x831fe60|s1'
-991866206: 11942: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x831fe80|s1'
-991866206: 11943: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831fea0|s1'
-991866206: 11944: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x831fec0|s1'
-991866206: 11945: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x831fee0|s1'
-991866206: 11946: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x831ff00|s1'
-991866206: 11947: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831ff20|s1'
-991866206: 11948: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830df80|s1'
-991866206: 11949: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316e00|s1'
-991866206: 11950: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x831ff40|s1'
-991866206: 11951: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x831ff60|s1'
-991866206: 11952: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x831ff80|s1'
-991866206: 11953: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x831ffa0|s1'
-991866206: 11954: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x831ffc0|s1'
-991866206: 11955: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x831ffe0|s1'
-991866206: 11956: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321000|s1'
-991866206: 11957: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321020|s1'
-991866206: 11958: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8321040|s1'
-991866206: 11959: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321060|s1'
-991866206: 11960: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x830dfc0|s1'
-991866206: 11961: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316e80|s1'
-991866206: 11962: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8321080|s1'
-991866206: 11963: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83210a0|s1'
-991866206: 11964: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x83210c0|s1'
-991866206: 11965: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x83210e0|s1'
-991866206: 11966: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8321100|s1'
-991866206: 11967: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321120|s1'
-991866206: 11968: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316f00|s1'
-991866206: 11969: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8321140|s1'
-991866206: 11970: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8321160|s1'
-991866206: 11971: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8321180|s1'
-991866206: 11972: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83211a0|s1'
-991866206: 11973: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83211c0|s1'
-991866206: 11974: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83211e0|s1'
-991866206: 11975: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321200|s1'
-991866206: 11976: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321220|s1'
-991866206: 11977: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321240|s1'
-991866206: 11978: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323000|s1'
-991866206: 11979: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321260|s1'
-991866206: 11980: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8316f80|s1'
-991866206: 11981: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x8321280|s1'
-991866206: 11982: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x83212a0|s1'
-991866206: 11983: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x83212c0|s1'
-991866206: 11984: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83212e0|s1'
-991866206: 11985: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8321300|s1'
-991866206: 11986: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321320|s1'
-991866206: 11987: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8321340|s1'
-991866206: 11988: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8321360|s1'
-991866206: 11989: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8321380|s1'
-991866206: 11990: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83213a0|s1'
-991866206: 11991: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324000|s1'
-991866206: 11992: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83213c0|s1'
-991866206: 11993: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83213e0|s1'
-991866206: 11994: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321400|s1'
-991866206: 11995: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321420|s1'
-991866206: 11996: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321440|s1'
-991866206: 11997: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321460|s1'
-991866206: 11998: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8321480|s1'
-991866206: 11999: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83214a0|s1'
-991866206: 12000: checking heap
-991866206: 12000: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323040|s1'
-991866206: 12001: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324080|s1'
-991866206: 12002: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83214c0|s1'
-991866206: 12003: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83214e0|s1'
-991866206: 12004: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8321500|s1'
-991866206: 12005: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8321520|s1'
-991866206: 12006: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8321540|s1'
-991866206: 12007: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321560|s1'
-991866206: 12008: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321580|s1'
-991866206: 12009: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83215a0|s1'
-991866206: 12010: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83215c0|s1'
-991866206: 12011: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323080|s1'
-991866206: 12012: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83215e0|s1'
-991866206: 12013: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324100|s1'
-991866206: 12014: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8321600|s1'
-991866206: 12015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321620|s1'
-991866206: 12016: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8321640|s1'
-991866206: 12017: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8321660|s1'
-991866206: 12018: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8321680|s1'
-991866206: 12019: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x83216a0|s1'
-991866206: 12020: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83216c0|s1'
-991866206: 12021: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83216e0|s1'
-991866206: 12022: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321700|s1'
-991866206: 12023: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321720|s1'
-991866206: 12024: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321740|s1'
-991866206: 12025: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83230c0|s1'
-991866206: 12026: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321760|s1'
-991866206: 12027: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324180|s1'
-991866206: 12028: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8321780|s1'
-991866206: 12029: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83217a0|s1'
-991866206: 12030: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83217c0|s1'
-991866206: 12031: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83217e0|s1'
-991866206: 12032: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8321800|s1'
-991866206: 12033: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8321820|s1'
-991866206: 12034: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321840|s1'
-991866206: 12035: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321860|s1'
-991866206: 12036: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321880|s1'
-991866206: 12037: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83218a0|s1'
-991866206: 12038: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83218c0|s1'
-991866206: 12039: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83218e0|s1'
-991866206: 12040: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323100|s1'
-991866206: 12041: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324200|s1'
-991866206: 12042: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8321900|s1'
-991866206: 12043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321920|s1'
-991866206: 12044: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8321940|s1'
-991866206: 12045: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8321960|s1'
-991866206: 12046: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8321980|s1'
-991866206: 12047: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83219a0|s1'
-991866206: 12048: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324280|s1'
-991866206: 12049: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83219c0|s1'
-991866206: 12050: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83219e0|s1'
-991866206: 12051: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8321a00|s1'
-991866206: 12052: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x8321a20|s1'
-991866206: 12053: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8321a40|s1'
-991866206: 12054: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321a60|s1'
-991866206: 12055: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321a80|s1'
-991866206: 12056: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321aa0|s1'
-991866206: 12057: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8321ac0|s1'
-991866206: 12058: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321ae0|s1'
-991866206: 12059: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323140|s1'
-991866206: 12060: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324300|s1'
-991866206: 12061: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321b00|s1'
-991866206: 12062: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8321b20|s1'
-991866206: 12063: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8321b40|s1'
-991866206: 12064: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8321b60|s1'
-991866206: 12065: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321b80|s1'
-991866206: 12066: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321ba0|s1'
-991866206: 12067: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321bc0|s1'
-991866206: 12068: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321be0|s1'
-991866206: 12069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321c00|s1'
-991866206: 12070: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323180|s1'
-991866206: 12071: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324380|s1'
-991866206: 12072: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321c20|s1'
-991866206: 12073: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8321c40|s1'
-991866206: 12074: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8321c60|s1'
-991866206: 12075: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321c80|s1'
-991866206: 12076: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321ca0|s1'
-991866206: 12077: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321cc0|s1'
-991866206: 12078: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321ce0|s1'
-991866206: 12079: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8321d00|s1'
-991866206: 12080: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321d20|s1'
-991866206: 12081: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83231c0|s1'
-991866206: 12082: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324400|s1'
-991866206: 12083: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321d40|s1'
-991866206: 12084: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8321d60|s1'
-991866206: 12085: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8321d80|s1'
-991866206: 12086: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8321da0|s1'
-991866206: 12087: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321dc0|s1'
-991866206: 12088: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321de0|s1'
-991866206: 12089: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321e00|s1'
-991866206: 12090: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8321e20|s1'
-991866206: 12091: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321e40|s1'
-991866206: 12092: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323200|s1'
-991866206: 12093: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324480|s1'
-991866206: 12094: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321e60|s1'
-991866206: 12095: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8321e80|s1'
-991866206: 12096: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8321ea0|s1'
-991866206: 12097: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8321ec0|s1'
-991866206: 12098: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8321ee0|s1'
-991866206: 12099: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8321f00|s1'
-991866206: 12100: checking heap
-991866206: 12100: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8321f20|s1'
-991866206: 12101: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321f40|s1'
-991866206: 12102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321f60|s1'
-991866206: 12103: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323240|s1'
-991866206: 12104: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324500|s1'
-991866206: 12105: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8321f80|s1'
-991866206: 12106: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8321fa0|s1'
-991866206: 12107: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8321fc0|s1'
-991866206: 12108: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8321fe0|s1'
-991866206: 12109: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326000|s1'
-991866206: 12110: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326020|s1'
-991866206: 12111: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326040|s1'
-991866206: 12112: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8326060|s1'
-991866206: 12113: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326080|s1'
-991866206: 12114: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323280|s1'
-991866206: 12115: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324580|s1'
-991866206: 12116: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83260a0|s1'
-991866206: 12117: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83260c0|s1'
-991866206: 12118: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83260e0|s1'
-991866206: 12119: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8326100|s1'
-991866206: 12120: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8326120|s1'
-991866206: 12121: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8326140|s1'
-991866206: 12122: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326160|s1'
-991866206: 12123: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326180|s1'
-991866206: 12124: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83261a0|s1'
-991866206: 12125: *** alloc: at 'multiVal.c:39' for 12 bytes, got '0x83261c0|s1'
-991866206: 12126: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83261e0|s1'
-991866206: 12127: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326200|s1'
-991866206: 12128: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83232c0|s1'
-991866206: 12129: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324600|s1'
-991866206: 12130: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326220|s1'
-991866206: 12131: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326240|s1'
-991866206: 12132: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8326260|s1'
-991866206: 12133: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8326280|s1'
-991866206: 12134: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83262a0|s1'
-991866206: 12135: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83262c0|s1'
-991866206: 12136: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83262e0|s1'
-991866206: 12137: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326300|s1'
-991866206: 12138: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8326320|s1'
-991866206: 12139: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326340|s1'
-991866206: 12140: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323300|s1'
-991866206: 12141: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324680|s1'
-991866206: 12142: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326360|s1'
-991866206: 12143: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326380|s1'
-991866206: 12144: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x83263a0|s1'
-991866206: 12145: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x83263c0|s1'
-991866206: 12146: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83263e0|s1'
-991866206: 12147: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326400|s1'
-991866206: 12148: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326420|s1'
-991866206: 12149: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326440|s1'
-991866206: 12150: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8326460|s1'
-991866206: 12151: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326480|s1'
-991866206: 12152: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323340|s1'
-991866206: 12153: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324700|s1'
-991866206: 12154: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83264a0|s1'
-991866206: 12155: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83264c0|s1'
-991866206: 12156: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83264e0|s1'
-991866206: 12157: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326500|s1'
-991866206: 12158: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326520|s1'
-991866206: 12159: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323380|s1'
-991866206: 12160: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8326540|s1'
-991866206: 12161: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326560|s1'
-991866206: 12162: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326580|s1'
-991866206: 12163: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83265a0|s1'
-991866206: 12164: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83265c0|s1'
-991866206: 12165: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83265e0|s1'
-991866206: 12166: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83233c0|s1'
-991866206: 12167: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324780|s1'
-991866206: 12168: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326600|s1'
-991866206: 12169: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326620|s1'
-991866206: 12170: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326640|s1'
-991866206: 12171: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326660|s1'
-991866206: 12172: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326680|s1'
-991866206: 12173: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323400|s1'
-991866206: 12174: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83266a0|s1'
-991866206: 12175: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83266c0|s1'
-991866206: 12176: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83266e0|s1'
-991866206: 12177: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326700|s1'
-991866206: 12178: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326720|s1'
-991866206: 12179: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326740|s1'
-991866206: 12180: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323440|s1'
-991866206: 12181: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324800|s1'
-991866206: 12182: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326760|s1'
-991866206: 12183: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326780|s1'
-991866206: 12184: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83267a0|s1'
-991866206: 12185: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83267c0|s1'
-991866206: 12186: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83267e0|s1'
-991866206: 12187: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323480|s1'
-991866206: 12188: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326800|s1'
-991866206: 12189: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326820|s1'
-991866206: 12190: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326840|s1'
-991866206: 12191: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326860|s1'
-991866206: 12192: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326880|s1'
-991866206: 12193: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83268a0|s1'
-991866206: 12194: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83234c0|s1'
-991866206: 12195: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324880|s1'
-991866206: 12196: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83268c0|s1'
-991866206: 12197: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83268e0|s1'
-991866206: 12198: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326900|s1'
-991866206: 12199: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326920|s1'
-991866206: 12200: checking heap
-991866206: 12200: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326940|s1'
-991866206: 12201: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323500|s1'
-991866206: 12202: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326960|s1'
-991866206: 12203: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326980|s1'
-991866206: 12204: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83269a0|s1'
-991866206: 12205: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83269c0|s1'
-991866206: 12206: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83269e0|s1'
-991866206: 12207: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326a00|s1'
-991866206: 12208: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323540|s1'
-991866206: 12209: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324900|s1'
-991866206: 12210: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326a20|s1'
-991866206: 12211: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326a40|s1'
-991866206: 12212: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326a60|s1'
-991866206: 12213: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326a80|s1'
-991866206: 12214: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326aa0|s1'
-991866206: 12215: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323580|s1'
-991866206: 12216: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326ac0|s1'
-991866206: 12217: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326ae0|s1'
-991866206: 12218: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326b00|s1'
-991866206: 12219: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326b20|s1'
-991866206: 12220: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326b40|s1'
-991866206: 12221: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326b60|s1'
-991866206: 12222: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83235c0|s1'
-991866206: 12223: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324980|s1'
-991866206: 12224: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326b80|s1'
-991866206: 12225: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326ba0|s1'
-991866206: 12226: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326bc0|s1'
-991866206: 12227: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326be0|s1'
-991866206: 12228: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326c00|s1'
-991866206: 12229: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323600|s1'
-991866206: 12230: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326c20|s1'
-991866206: 12231: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326c40|s1'
-991866206: 12232: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326c60|s1'
-991866206: 12233: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326c80|s1'
-991866206: 12234: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326ca0|s1'
-991866206: 12235: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326cc0|s1'
-991866206: 12236: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323640|s1'
-991866206: 12237: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324a00|s1'
-991866206: 12238: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326ce0|s1'
-991866206: 12239: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326d00|s1'
-991866206: 12240: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326d20|s1'
-991866206: 12241: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326d40|s1'
-991866206: 12242: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326d60|s1'
-991866206: 12243: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323680|s1'
-991866206: 12244: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326d80|s1'
-991866206: 12245: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326da0|s1'
-991866206: 12246: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326dc0|s1'
-991866206: 12247: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326de0|s1'
-991866206: 12248: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326e00|s1'
-991866206: 12249: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326e20|s1'
-991866206: 12250: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83236c0|s1'
-991866206: 12251: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324a80|s1'
-991866206: 12252: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326e40|s1'
-991866206: 12253: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326e60|s1'
-991866206: 12254: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326e80|s1'
-991866206: 12255: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326ea0|s1'
-991866206: 12256: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8326ec0|s1'
-991866206: 12257: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323700|s1'
-991866206: 12258: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326ee0|s1'
-991866206: 12259: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8326f00|s1'
-991866206: 12260: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8326f20|s1'
-991866206: 12261: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8326f40|s1'
-991866206: 12262: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8326f60|s1'
-991866206: 12263: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326f80|s1'
-991866206: 12264: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323740|s1'
-991866206: 12265: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324b00|s1'
-991866206: 12266: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326fa0|s1'
-991866206: 12267: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8326fc0|s1'
-991866206: 12268: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8326fe0|s1'
-991866206: 12269: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328000|s1'
-991866206: 12270: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8328020|s1'
-991866206: 12271: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323780|s1'
-991866206: 12272: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8328040|s1'
-991866206: 12273: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328060|s1'
-991866206: 12274: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8328080|s1'
-991866206: 12275: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83280a0|s1'
-991866206: 12276: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83237c0|s1'
-991866206: 12277: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324b80|s1'
-991866206: 12278: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83280c0|s1'
-991866206: 12279: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83280e0|s1'
-991866206: 12280: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328100|s1'
-991866206: 12281: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328120|s1'
-991866206: 12282: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8328140|s1'
-991866206: 12283: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323800|s1'
-991866206: 12284: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8328160|s1'
-991866206: 12285: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328180|s1'
-991866206: 12286: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83281a0|s1'
-991866206: 12287: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83281c0|s1'
-991866206: 12288: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83281e0|s1'
-991866206: 12289: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328200|s1'
-991866206: 12290: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323840|s1'
-991866206: 12291: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324c00|s1'
-991866206: 12292: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328220|s1'
-991866206: 12293: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328240|s1'
-991866206: 12294: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328260|s1'
-991866206: 12295: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328280|s1'
-991866206: 12296: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83282a0|s1'
-991866206: 12297: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323880|s1'
-991866206: 12298: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83282c0|s1'
-991866206: 12299: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83282e0|s1'
-991866206: 12300: checking heap
-991866206: 12300: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328300|s1'
-991866206: 12301: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328320|s1'
-991866206: 12302: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8328340|s1'
-991866206: 12303: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328360|s1'
-991866206: 12304: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83238c0|s1'
-991866206: 12305: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324c80|s1'
-991866206: 12306: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328380|s1'
-991866206: 12307: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83283a0|s1'
-991866206: 12308: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83283c0|s1'
-991866206: 12309: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83283e0|s1'
-991866206: 12310: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8328400|s1'
-991866206: 12311: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323900|s1'
-991866206: 12312: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8328420|s1'
-991866206: 12313: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328440|s1'
-991866206: 12314: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328460|s1'
-991866206: 12315: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328480|s1'
-991866206: 12316: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83284a0|s1'
-991866206: 12317: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83284c0|s1'
-991866206: 12318: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323940|s1'
-991866206: 12319: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324d00|s1'
-991866206: 12320: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83284e0|s1'
-991866206: 12321: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328500|s1'
-991866206: 12322: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328520|s1'
-991866206: 12323: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328540|s1'
-991866206: 12324: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8328560|s1'
-991866206: 12325: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323980|s1'
-991866206: 12326: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8328580|s1'
-991866206: 12327: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83285a0|s1'
-991866206: 12328: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83285c0|s1'
-991866206: 12329: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83285e0|s1'
-991866206: 12330: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8328600|s1'
-991866206: 12331: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328620|s1'
-991866206: 12332: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83239c0|s1'
-991866206: 12333: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324d80|s1'
-991866206: 12334: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328640|s1'
-991866206: 12335: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328660|s1'
-991866206: 12336: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8328680|s1'
-991866206: 12337: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83286a0|s1'
-991866206: 12338: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83286c0|s1'
-991866206: 12339: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323a00|s1'
-991866206: 12340: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83286e0|s1'
-991866206: 12341: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328700|s1'
-991866206: 12342: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328720|s1'
-991866206: 12343: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328740|s1'
-991866206: 12344: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8328760|s1'
-991866206: 12345: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328780|s1'
-991866206: 12346: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323a40|s1'
-991866206: 12347: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324e00|s1'
-991866206: 12348: *** alloc: at 'uentry.c:4143' for 4 bytes, got '0x83287a0|s1'
-991866206: 12349: *** alloc: at 'uentry.c:4144' for 12 bytes, got '0x83287c0|s1'
-991866206: 12350: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83287e0|s1'
-991866206: 12351: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328800|s1'
-991866206: 12352: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328820|s1'
-991866206: 12353: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328840|s1'
-991866206: 12354: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8328860|s1'
-991866206: 12355: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328880|s1'
-991866206: 12356: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323a80|s1'
-991866206: 12357: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324e80|s1'
-991866206: 12358: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83288a0|s1'
-991866206: 12359: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83288c0|s1'
-991866206: 12360: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x83288e0|s1'
-991866206: 12361: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8328900|s1'
-991866206: 12362: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8328920|s1'
-991866206: 12363: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328940|s1'
-991866206: 12364: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328960|s1'
-991866206: 12365: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328980|s1'
-991866206: 12366: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x83289a0|s1'
-991866206: 12367: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323ac0|s1'
-991866206: 12368: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83289c0|s1'
-991866206: 12369: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324f00|s1'
-991866206: 12370: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x83289e0|s1'
-991866206: 12371: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328a00|s1'
-991866206: 12372: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8328a20|s1'
-991866206: 12373: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8328a40|s1'
-991866206: 12374: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8328a60|s1'
-991866206: 12375: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8328a80|s1'
-991866206: 12376: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8328aa0|s1'
-991866206: 12377: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328ac0|s1'
-991866206: 12378: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328ae0|s1'
-991866206: 12379: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328b00|s1'
-991866206: 12380: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8328b20|s1'
-991866206: 12381: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323b00|s1'
-991866206: 12382: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328b40|s1'
-991866206: 12383: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8324f80|s1'
-991866206: 12384: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8328b60|s1'
-991866206: 12385: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328b80|s1'
-991866206: 12386: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8328ba0|s1'
-991866206: 12387: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8328bc0|s1'
-991866206: 12388: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8328be0|s1'
-991866206: 12389: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8328c00|s1'
-991866206: 12390: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8328c20|s1'
-991866206: 12391: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328c40|s1'
-991866206: 12392: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328c60|s1'
-991866206: 12393: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328c80|s1'
-991866206: 12394: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8328ca0|s1'
-991866206: 12395: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323b40|s1'
-991866206: 12396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328cc0|s1'
-991866206: 12397: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a000|s1'
-991866206: 12398: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8328ce0|s1'
-991866206: 12399: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328d00|s1'
-991866206: 12400: checking heap
-991866206: 12400: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8328d20|s1'
-991866206: 12401: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8328d40|s1'
-991866206: 12402: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8328d60|s1'
-991866206: 12403: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8328d80|s1'
-991866206: 12404: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8328da0|s1'
-991866206: 12405: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328dc0|s1'
-991866206: 12406: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328de0|s1'
-991866206: 12407: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328e00|s1'
-991866206: 12408: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8328e20|s1'
-991866206: 12409: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323b80|s1'
-991866206: 12410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328e40|s1'
-991866206: 12411: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a080|s1'
-991866206: 12412: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8328e60|s1'
-991866206: 12413: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328e80|s1'
-991866206: 12414: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8328ea0|s1'
-991866206: 12415: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8328ec0|s1'
-991866206: 12416: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8328ee0|s1'
-991866206: 12417: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8328f00|s1'
-991866206: 12418: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8328f20|s1'
-991866206: 12419: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8328f40|s1'
-991866206: 12420: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8328f60|s1'
-991866206: 12421: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8328f80|s1'
-991866206: 12422: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8328fa0|s1'
-991866206: 12423: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323bc0|s1'
-991866206: 12424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8328fc0|s1'
-991866206: 12425: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a100|s1'
-991866206: 12426: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8328fe0|s1'
-991866206: 12427: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c000|s1'
-991866206: 12428: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x832c020|s1'
-991866206: 12429: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x832c040|s1'
-991866206: 12430: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x832c060|s1'
-991866206: 12431: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x832c080|s1'
-991866206: 12432: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832c0a0|s1'
-991866206: 12433: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832c0c0|s1'
-991866206: 12434: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832c0e0|s1'
-991866206: 12435: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832c100|s1'
-991866206: 12436: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a180|s1'
-991866206: 12437: *** alloc: at 'sRef.c:4174' for 4 bytes, got '0x832c120|s1'
-991866206: 12438: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x832c140|s1'
-991866206: 12439: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x832c160|s1'
-991866206: 12440: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a200|s1'
-991866206: 12441: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832c180|s1'
-991866206: 12442: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832c1a0|s1'
-991866206: 12443: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x832c1c0|s1'
-991866206: 12444: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x832c1e0|s1'
-991866206: 12445: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a280|s1'
-991866206: 12446: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832c200|s1'
-991866206: 12447: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832c220|s1'
-991866206: 12448: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x832c240|s1'
-991866206: 12449: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c260|s1'
-991866206: 12450: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323c00|s1'
-991866206: 12451: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a300|s1'
-991866206: 12452: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c280|s1'
-991866206: 12453: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c2a0|s1'
-991866206: 12454: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c2c0|s1'
-991866206: 12455: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c2e0|s1'
-991866206: 12456: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c300|s1'
-991866206: 12457: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c320|s1'
-991866206: 12458: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c340|s1'
-991866206: 12459: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c360|s1'
-991866206: 12460: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x832c380|s1'
-991866206: 12461: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323c40|s1'
-991866206: 12462: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x832c3a0|s1'
-991866206: 12463: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832c3c0|s1'
-991866206: 12464: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832c3e0|s1'
-991866206: 12465: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832c400|s1'
-991866206: 12466: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x832c420|s1'
-991866206: 12467: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c440|s1'
-991866206: 12468: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323c80|s1'
-991866206: 12469: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a380|s1'
-991866206: 12470: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c460|s1'
-991866206: 12471: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c480|s1'
-991866206: 12472: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c4a0|s1'
-991866206: 12473: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c4c0|s1'
-991866206: 12474: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c4e0|s1'
-991866206: 12475: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c500|s1'
-991866206: 12476: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x832c520|s1'
-991866206: 12477: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8323cc0|s1'
-991866206: 12478: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x832c540|s1'
-991866206: 12479: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832c560|s1'
-991866206: 12480: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832c580|s1'
-991866206: 12481: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832c5a0|s1'
-991866206: 12482: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832c5c0|s1'
-991866206: 12483: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c5e0|s1'
-991866206: 12484: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323d00|s1'
-991866206: 12485: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a400|s1'
-991866206: 12486: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c600|s1'
-991866206: 12487: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c620|s1'
-991866206: 12488: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832c640|s1'
-991866206: 12489: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832c660|s1'
-991866206: 12490: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c680|s1'
-991866206: 12491: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c6a0|s1'
-991866206: 12492: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a480|s1'
-991866206: 12493: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832c6c0|s1'
-991866206: 12494: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832c6e0|s1'
-991866206: 12495: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832c700|s1'
-991866206: 12496: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832c720|s1'
-991866206: 12497: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832c740|s1'
-991866206: 12498: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832c760|s1'
-991866206: 12499: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832c780|s1'
-991866206: 12500: checking heap
-991866206: 12500: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832c7a0|s1'
-991866206: 12501: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832c7c0|s1'
-991866206: 12502: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c7e0|s1'
-991866206: 12503: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323d40|s1'
-991866206: 12504: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a500|s1'
-991866206: 12505: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c800|s1'
-991866206: 12506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c820|s1'
-991866206: 12507: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832c840|s1'
-991866206: 12508: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832c860|s1'
-991866206: 12509: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832c880|s1'
-991866206: 12510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c8a0|s1'
-991866206: 12511: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a580|s1'
-991866206: 12512: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832c8c0|s1'
-991866206: 12513: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832c8e0|s1'
-991866206: 12514: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832c900|s1'
-991866206: 12515: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832c920|s1'
-991866206: 12516: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832c940|s1'
-991866206: 12517: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832c960|s1'
-991866206: 12518: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832c980|s1'
-991866206: 12519: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832c9a0|s1'
-991866206: 12520: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x832c9c0|s1'
-991866206: 12521: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832c9e0|s1'
-991866206: 12522: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323d80|s1'
-991866206: 12523: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a600|s1'
-991866206: 12524: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ca00|s1'
-991866206: 12525: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832ca20|s1'
-991866206: 12526: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832ca40|s1'
-991866206: 12527: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832ca60|s1'
-991866206: 12528: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ca80|s1'
-991866206: 12529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832caa0|s1'
-991866206: 12530: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a680|s1'
-991866206: 12531: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832cac0|s1'
-991866206: 12532: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832cae0|s1'
-991866206: 12533: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832cb00|s1'
-991866206: 12534: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832cb20|s1'
-991866206: 12535: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x832cb40|s1'
-991866206: 12536: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832cb60|s1'
-991866206: 12537: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832cb80|s1'
-991866206: 12538: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832cba0|s1'
-991866206: 12539: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832cbc0|s1'
-991866206: 12540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832cbe0|s1'
-991866206: 12541: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323dc0|s1'
-991866206: 12542: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a700|s1'
-991866206: 12543: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832cc00|s1'
-991866206: 12544: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832cc20|s1'
-991866206: 12545: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832cc40|s1'
-991866206: 12546: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832cc60|s1'
-991866206: 12547: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832cc80|s1'
-991866206: 12548: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832cca0|s1'
-991866206: 12549: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a780|s1'
-991866206: 12550: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832ccc0|s1'
-991866206: 12551: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832cce0|s1'
-991866206: 12552: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832cd00|s1'
-991866206: 12553: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832cd20|s1'
-991866206: 12554: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832cd40|s1'
-991866206: 12555: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832cd60|s1'
-991866206: 12556: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832cd80|s1'
-991866206: 12557: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832cda0|s1'
-991866206: 12558: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x832cdc0|s1'
-991866206: 12559: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832cde0|s1'
-991866206: 12560: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323e00|s1'
-991866206: 12561: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a800|s1'
-991866206: 12562: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ce00|s1'
-991866206: 12563: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832ce20|s1'
-991866206: 12564: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832ce40|s1'
-991866206: 12565: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832ce60|s1'
-991866206: 12566: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ce80|s1'
-991866206: 12567: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832cea0|s1'
-991866206: 12568: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a880|s1'
-991866206: 12569: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832cec0|s1'
-991866206: 12570: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832cee0|s1'
-991866206: 12571: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832cf00|s1'
-991866206: 12572: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832cf20|s1'
-991866206: 12573: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x832cf40|s1'
-991866206: 12574: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832cf60|s1'
-991866206: 12575: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832cf80|s1'
-991866206: 12576: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832cfa0|s1'
-991866206: 12577: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832cfc0|s1'
-991866206: 12578: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323e40|s1'
-991866206: 12579: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832cfe0|s1'
-991866206: 12580: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a900|s1'
-991866206: 12581: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x832e000|s1'
-991866206: 12582: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x832e020|s1'
-991866206: 12583: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x832e040|s1'
-991866206: 12584: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e060|s1'
-991866206: 12585: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x832e080|s1'
-991866206: 12586: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e0a0|s1'
-991866206: 12587: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x832e0c0|s1'
-991866206: 12588: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x832e0e0|s1'
-991866206: 12589: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x832e100|s1'
-991866206: 12590: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x832e120|s1'
-991866206: 12591: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832a980|s1'
-991866206: 12592: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832e140|s1'
-991866206: 12593: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832e160|s1'
-991866206: 12594: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832e180|s1'
-991866206: 12595: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832e1a0|s1'
-991866206: 12596: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832e1c0|s1'
-991866206: 12597: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832e1e0|s1'
-991866206: 12598: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832e200|s1'
-991866206: 12599: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e220|s1'
-991866206: 12600: checking heap
-991866206: 12600: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323e80|s1'
-991866206: 12601: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832aa00|s1'
-991866206: 12602: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832e240|s1'
-991866206: 12603: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e260|s1'
-991866206: 12604: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832e280|s1'
-991866206: 12605: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832e2a0|s1'
-991866206: 12606: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832e2c0|s1'
-991866206: 12607: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e2e0|s1'
-991866206: 12608: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832aa80|s1'
-991866206: 12609: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832e300|s1'
-991866206: 12610: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832e320|s1'
-991866206: 12611: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832e340|s1'
-991866206: 12612: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832e360|s1'
-991866206: 12613: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832e380|s1'
-991866206: 12614: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832e3a0|s1'
-991866206: 12615: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832e3c0|s1'
-991866206: 12616: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832e3e0|s1'
-991866206: 12617: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x832e400|s1'
-991866206: 12618: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e420|s1'
-991866206: 12619: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323ec0|s1'
-991866206: 12620: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ab00|s1'
-991866206: 12621: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832e440|s1'
-991866206: 12622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e460|s1'
-991866206: 12623: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832e480|s1'
-991866206: 12624: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832e4a0|s1'
-991866206: 12625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832e4c0|s1'
-991866206: 12626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e4e0|s1'
-991866206: 12627: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ab80|s1'
-991866206: 12628: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832e500|s1'
-991866206: 12629: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832e520|s1'
-991866206: 12630: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832e540|s1'
-991866206: 12631: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832e560|s1'
-991866206: 12632: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x832e580|s1'
-991866206: 12633: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832e5a0|s1'
-991866206: 12634: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832e5c0|s1'
-991866206: 12635: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832e5e0|s1'
-991866206: 12636: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832e600|s1'
-991866206: 12637: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323f00|s1'
-991866206: 12638: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e620|s1'
-991866206: 12639: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ac00|s1'
-991866206: 12640: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x832e640|s1'
-991866206: 12641: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x832e660|s1'
-991866206: 12642: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x832e680|s1'
-991866206: 12643: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e6a0|s1'
-991866206: 12644: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x832e6c0|s1'
-991866206: 12645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e6e0|s1'
-991866206: 12646: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x832e700|s1'
-991866206: 12647: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x832e720|s1'
-991866206: 12648: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x832e740|s1'
-991866206: 12649: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x832e760|s1'
-991866206: 12650: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ac80|s1'
-991866206: 12651: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832e780|s1'
-991866206: 12652: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832e7a0|s1'
-991866206: 12653: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832e7c0|s1'
-991866206: 12654: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832e7e0|s1'
-991866206: 12655: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832e800|s1'
-991866206: 12656: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832e820|s1'
-991866206: 12657: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832e840|s1'
-991866206: 12658: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323f40|s1'
-991866206: 12659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e860|s1'
-991866206: 12660: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ad00|s1'
-991866206: 12661: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x832e880|s1'
-991866206: 12662: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x832e8a0|s1'
-991866206: 12663: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x832e8c0|s1'
-991866206: 12664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e8e0|s1'
-991866206: 12665: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x832e900|s1'
-991866206: 12666: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832e920|s1'
-991866206: 12667: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x832e940|s1'
-991866206: 12668: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x832e960|s1'
-991866206: 12669: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x832e980|s1'
-991866206: 12670: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x832e9a0|s1'
-991866206: 12671: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ad80|s1'
-991866206: 12672: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832e9c0|s1'
-991866206: 12673: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832e9e0|s1'
-991866206: 12674: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832ea00|s1'
-991866206: 12675: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832ea20|s1'
-991866206: 12676: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832ea40|s1'
-991866206: 12677: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832ea60|s1'
-991866206: 12678: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832ea80|s1'
-991866206: 12679: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832eaa0|s1'
-991866206: 12680: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323f80|s1'
-991866206: 12681: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ae00|s1'
-991866206: 12682: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832eac0|s1'
-991866206: 12683: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832eae0|s1'
-991866206: 12684: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832eb00|s1'
-991866206: 12685: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832eb20|s1'
-991866206: 12686: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832eb40|s1'
-991866206: 12687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832eb60|s1'
-991866206: 12688: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832ae80|s1'
-991866206: 12689: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832eb80|s1'
-991866206: 12690: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832eba0|s1'
-991866206: 12691: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832ebc0|s1'
-991866206: 12692: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832ebe0|s1'
-991866206: 12693: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x832ec00|s1'
-991866206: 12694: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832ec20|s1'
-991866206: 12695: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832ec40|s1'
-991866206: 12696: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832ec60|s1'
-991866206: 12697: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x832ec80|s1'
-991866206: 12698: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832eca0|s1'
-991866206: 12699: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8323fc0|s1'
-991866206: 12700: checking heap
-991866206: 12700: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832af00|s1'
-991866206: 12701: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ecc0|s1'
-991866206: 12702: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832ece0|s1'
-991866206: 12703: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832ed00|s1'
-991866206: 12704: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832ed20|s1'
-991866206: 12705: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ed40|s1'
-991866206: 12706: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832ed60|s1'
-991866206: 12707: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x832af80|s1'
-991866206: 12708: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832ed80|s1'
-991866206: 12709: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832eda0|s1'
-991866206: 12710: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832edc0|s1'
-991866206: 12711: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832ede0|s1'
-991866206: 12712: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x832ee00|s1'
-991866206: 12713: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x832ee20|s1'
-991866206: 12714: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x832ee40|s1'
-991866206: 12715: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x832ee60|s1'
-991866206: 12716: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x832ee80|s1'
-991866206: 12717: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832eea0|s1'
-991866206: 12718: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330000|s1'
-991866206: 12719: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331000|s1'
-991866206: 12720: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832eec0|s1'
-991866206: 12721: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832eee0|s1'
-991866206: 12722: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x832ef00|s1'
-991866206: 12723: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x832ef20|s1'
-991866206: 12724: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x832ef40|s1'
-991866206: 12725: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x832ef60|s1'
-991866206: 12726: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331080|s1'
-991866206: 12727: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x832ef80|s1'
-991866206: 12728: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x832efa0|s1'
-991866206: 12729: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x832efc0|s1'
-991866206: 12730: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x832efe0|s1'
-991866206: 12731: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8333000|s1'
-991866206: 12732: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333020|s1'
-991866206: 12733: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333040|s1'
-991866206: 12734: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8333060|s1'
-991866206: 12735: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x8333080|s1'
-991866206: 12736: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83330a0|s1'
-991866206: 12737: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330040|s1'
-991866206: 12738: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331100|s1'
-991866206: 12739: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83330c0|s1'
-991866206: 12740: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83330e0|s1'
-991866206: 12741: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8333100|s1'
-991866206: 12742: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8333120|s1'
-991866206: 12743: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333140|s1'
-991866206: 12744: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333160|s1'
-991866206: 12745: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331180|s1'
-991866206: 12746: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8333180|s1'
-991866206: 12747: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83331a0|s1'
-991866206: 12748: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83331c0|s1'
-991866206: 12749: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83331e0|s1'
-991866206: 12750: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x8333200|s1'
-991866206: 12751: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333220|s1'
-991866206: 12752: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333240|s1'
-991866206: 12753: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8333260|s1'
-991866206: 12754: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8333280|s1'
-991866206: 12755: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330080|s1'
-991866206: 12756: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83332a0|s1'
-991866206: 12757: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331200|s1'
-991866206: 12758: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x83332c0|s1'
-991866206: 12759: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x83332e0|s1'
-991866206: 12760: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8333300|s1'
-991866206: 12761: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333320|s1'
-991866206: 12762: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8333340|s1'
-991866206: 12763: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333360|s1'
-991866206: 12764: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8333380|s1'
-991866206: 12765: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83333a0|s1'
-991866206: 12766: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83333c0|s1'
-991866206: 12767: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83333e0|s1'
-991866206: 12768: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331280|s1'
-991866206: 12769: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8333400|s1'
-991866206: 12770: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8333420|s1'
-991866206: 12771: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8333440|s1'
-991866206: 12772: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333460|s1'
-991866206: 12773: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333480|s1'
-991866206: 12774: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83334a0|s1'
-991866206: 12775: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83334c0|s1'
-991866206: 12776: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83334e0|s1'
-991866206: 12777: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83300c0|s1'
-991866206: 12778: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331300|s1'
-991866206: 12779: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333500|s1'
-991866206: 12780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333520|s1'
-991866206: 12781: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8333540|s1'
-991866206: 12782: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8333560|s1'
-991866206: 12783: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333580|s1'
-991866206: 12784: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83335a0|s1'
-991866206: 12785: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331380|s1'
-991866206: 12786: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83335c0|s1'
-991866206: 12787: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83335e0|s1'
-991866206: 12788: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8333600|s1'
-991866206: 12789: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x8333620|s1'
-991866206: 12790: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8333640|s1'
-991866206: 12791: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333660|s1'
-991866206: 12792: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333680|s1'
-991866206: 12793: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83336a0|s1'
-991866206: 12794: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x83336c0|s1'
-991866206: 12795: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83336e0|s1'
-991866206: 12796: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330100|s1'
-991866206: 12797: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331400|s1'
-991866206: 12798: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333700|s1'
-991866206: 12799: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333720|s1'
-991866206: 12800: checking heap
-991866206: 12800: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8333740|s1'
-991866206: 12801: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8333760|s1'
-991866206: 12802: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333780|s1'
-991866206: 12803: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83337a0|s1'
-991866206: 12804: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331480|s1'
-991866206: 12805: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83337c0|s1'
-991866206: 12806: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83337e0|s1'
-991866206: 12807: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8333800|s1'
-991866206: 12808: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x8333820|s1'
-991866206: 12809: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x8333840|s1'
-991866206: 12810: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333860|s1'
-991866206: 12811: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333880|s1'
-991866206: 12812: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83338a0|s1'
-991866206: 12813: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83338c0|s1'
-991866206: 12814: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330140|s1'
-991866206: 12815: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83338e0|s1'
-991866206: 12816: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331500|s1'
-991866206: 12817: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x8333900|s1'
-991866206: 12818: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x8333920|s1'
-991866206: 12819: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8333940|s1'
-991866206: 12820: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333960|s1'
-991866206: 12821: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8333980|s1'
-991866206: 12822: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83339a0|s1'
-991866206: 12823: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83339c0|s1'
-991866206: 12824: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83339e0|s1'
-991866206: 12825: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8333a00|s1'
-991866206: 12826: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x8333a20|s1'
-991866206: 12827: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331580|s1'
-991866206: 12828: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8333a40|s1'
-991866206: 12829: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8333a60|s1'
-991866206: 12830: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8333a80|s1'
-991866206: 12831: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333aa0|s1'
-991866206: 12832: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333ac0|s1'
-991866206: 12833: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8333ae0|s1'
-991866206: 12834: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8333b00|s1'
-991866206: 12835: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333b20|s1'
-991866206: 12836: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330180|s1'
-991866206: 12837: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331600|s1'
-991866206: 12838: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333b40|s1'
-991866206: 12839: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333b60|s1'
-991866206: 12840: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8333b80|s1'
-991866206: 12841: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8333ba0|s1'
-991866206: 12842: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8333bc0|s1'
-991866206: 12843: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333be0|s1'
-991866206: 12844: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333c00|s1'
-991866206: 12845: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8333c20|s1'
-991866206: 12846: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8333c40|s1'
-991866206: 12847: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333c60|s1'
-991866206: 12848: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83301c0|s1'
-991866206: 12849: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331680|s1'
-991866206: 12850: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333c80|s1'
-991866206: 12851: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333ca0|s1'
-991866206: 12852: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8333cc0|s1'
-991866206: 12853: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8333ce0|s1'
-991866206: 12854: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8333d00|s1'
-991866206: 12855: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333d20|s1'
-991866206: 12856: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331700|s1'
-991866206: 12857: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8333d40|s1'
-991866206: 12858: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8333d60|s1'
-991866206: 12859: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8333d80|s1'
-991866206: 12860: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x8333da0|s1'
-991866206: 12861: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8333dc0|s1'
-991866206: 12862: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8333de0|s1'
-991866206: 12863: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8333e00|s1'
-991866206: 12864: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8333e20|s1'
-991866206: 12865: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8333e40|s1'
-991866206: 12866: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330200|s1'
-991866206: 12867: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333e60|s1'
-991866206: 12868: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331780|s1'
-991866206: 12869: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x8333e80|s1'
-991866206: 12870: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x8333ea0|s1'
-991866206: 12871: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8333ec0|s1'
-991866206: 12872: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333ee0|s1'
-991866206: 12873: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8333f00|s1'
-991866206: 12874: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8333f20|s1'
-991866206: 12875: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8333f40|s1'
-991866206: 12876: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8333f60|s1'
-991866206: 12877: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8333f80|s1'
-991866206: 12878: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x8333fa0|s1'
-991866206: 12879: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331800|s1'
-991866206: 12880: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8333fc0|s1'
-991866206: 12881: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8333fe0|s1'
-991866206: 12882: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8335000|s1'
-991866206: 12883: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335020|s1'
-991866206: 12884: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335040|s1'
-991866206: 12885: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335060|s1'
-991866206: 12886: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8335080|s1'
-991866206: 12887: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83350a0|s1'
-991866206: 12888: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330240|s1'
-991866206: 12889: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331880|s1'
-991866206: 12890: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83350c0|s1'
-991866206: 12891: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83350e0|s1'
-991866206: 12892: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8335100|s1'
-991866206: 12893: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8335120|s1'
-991866206: 12894: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335140|s1'
-991866206: 12895: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335160|s1'
-991866206: 12896: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331900|s1'
-991866206: 12897: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335180|s1'
-991866206: 12898: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83351a0|s1'
-991866206: 12899: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83351c0|s1'
-991866206: 12900: checking heap
-991866206: 12900: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83351e0|s1'
-991866206: 12901: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8335200|s1'
-991866206: 12902: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335220|s1'
-991866206: 12903: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335240|s1'
-991866206: 12904: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335260|s1'
-991866206: 12905: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x8335280|s1'
-991866206: 12906: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83352a0|s1'
-991866206: 12907: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330280|s1'
-991866206: 12908: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331980|s1'
-991866206: 12909: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83352c0|s1'
-991866206: 12910: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83352e0|s1'
-991866206: 12911: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8335300|s1'
-991866206: 12912: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8335320|s1'
-991866206: 12913: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335340|s1'
-991866206: 12914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335360|s1'
-991866206: 12915: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331a00|s1'
-991866206: 12916: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335380|s1'
-991866206: 12917: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83353a0|s1'
-991866206: 12918: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83353c0|s1'
-991866206: 12919: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83353e0|s1'
-991866206: 12920: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x8335400|s1'
-991866206: 12921: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335420|s1'
-991866206: 12922: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335440|s1'
-991866206: 12923: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335460|s1'
-991866206: 12924: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8335480|s1'
-991866206: 12925: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83354a0|s1'
-991866206: 12926: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83302c0|s1'
-991866206: 12927: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331a80|s1'
-991866206: 12928: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83354c0|s1'
-991866206: 12929: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83354e0|s1'
-991866206: 12930: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8335500|s1'
-991866206: 12931: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8335520|s1'
-991866206: 12932: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335540|s1'
-991866206: 12933: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335560|s1'
-991866206: 12934: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331b00|s1'
-991866206: 12935: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335580|s1'
-991866206: 12936: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83355a0|s1'
-991866206: 12937: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83355c0|s1'
-991866206: 12938: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83355e0|s1'
-991866206: 12939: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8335600|s1'
-991866206: 12940: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335620|s1'
-991866206: 12941: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335640|s1'
-991866206: 12942: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335660|s1'
-991866206: 12943: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x8335680|s1'
-991866206: 12944: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83356a0|s1'
-991866206: 12945: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330300|s1'
-991866206: 12946: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331b80|s1'
-991866206: 12947: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83356c0|s1'
-991866206: 12948: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83356e0|s1'
-991866206: 12949: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8335700|s1'
-991866206: 12950: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8335720|s1'
-991866206: 12951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335740|s1'
-991866206: 12952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335760|s1'
-991866206: 12953: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331c00|s1'
-991866206: 12954: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335780|s1'
-991866206: 12955: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83357a0|s1'
-991866206: 12956: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83357c0|s1'
-991866206: 12957: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83357e0|s1'
-991866206: 12958: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x8335800|s1'
-991866206: 12959: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335820|s1'
-991866206: 12960: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335840|s1'
-991866206: 12961: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335860|s1'
-991866206: 12962: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8335880|s1'
-991866206: 12963: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330340|s1'
-991866206: 12964: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83358a0|s1'
-991866206: 12965: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331c80|s1'
-991866206: 12966: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x83358c0|s1'
-991866206: 12967: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x83358e0|s1'
-991866206: 12968: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8335900|s1'
-991866206: 12969: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335920|s1'
-991866206: 12970: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8335940|s1'
-991866206: 12971: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335960|s1'
-991866206: 12972: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8335980|s1'
-991866206: 12973: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83359a0|s1'
-991866206: 12974: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83359c0|s1'
-991866206: 12975: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83359e0|s1'
-991866206: 12976: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331d00|s1'
-991866206: 12977: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335a00|s1'
-991866206: 12978: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8335a20|s1'
-991866206: 12979: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8335a40|s1'
-991866206: 12980: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335a60|s1'
-991866206: 12981: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335a80|s1'
-991866206: 12982: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335aa0|s1'
-991866206: 12983: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8335ac0|s1'
-991866206: 12984: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335ae0|s1'
-991866206: 12985: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330380|s1'
-991866206: 12986: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331d80|s1'
-991866206: 12987: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335b00|s1'
-991866206: 12988: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335b20|s1'
-991866206: 12989: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8335b40|s1'
-991866206: 12990: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8335b60|s1'
-991866206: 12991: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335b80|s1'
-991866206: 12992: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335ba0|s1'
-991866206: 12993: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331e00|s1'
-991866206: 12994: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335bc0|s1'
-991866206: 12995: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8335be0|s1'
-991866206: 12996: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8335c00|s1'
-991866206: 12997: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x8335c20|s1'
-991866206: 12998: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8335c40|s1'
-991866206: 12999: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335c60|s1'
-991866206: 13000: checking heap
-991866206: 13000: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335c80|s1'
-991866206: 13001: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335ca0|s1'
-991866206: 13002: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x8335cc0|s1'
-991866206: 13003: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335ce0|s1'
-991866206: 13004: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83303c0|s1'
-991866206: 13005: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331e80|s1'
-991866206: 13006: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335d00|s1'
-991866206: 13007: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335d20|s1'
-991866206: 13008: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x8335d40|s1'
-991866206: 13009: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x8335d60|s1'
-991866206: 13010: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8335d80|s1'
-991866206: 13011: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335da0|s1'
-991866206: 13012: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331f00|s1'
-991866206: 13013: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8335dc0|s1'
-991866206: 13014: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8335de0|s1'
-991866206: 13015: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8335e00|s1'
-991866206: 13016: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x8335e20|s1'
-991866206: 13017: *** alloc: at 'ra=0x80e6889' for 16 bytes, got '0x8335e40|s1'
-991866206: 13018: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8335e60|s1'
-991866206: 13019: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8335e80|s1'
-991866206: 13020: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8335ea0|s1'
-991866206: 13021: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8335ec0|s1'
-991866206: 13022: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330400|s1'
-991866206: 13023: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335ee0|s1'
-991866206: 13024: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8331f80|s1'
-991866206: 13025: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x8335f00|s1'
-991866206: 13026: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x8335f20|s1'
-991866206: 13027: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8335f40|s1'
-991866206: 13028: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335f60|s1'
-991866206: 13029: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8335f80|s1'
-991866206: 13030: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8335fa0|s1'
-991866206: 13031: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8335fc0|s1'
-991866206: 13032: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8335fe0|s1'
-991866206: 13033: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8337000|s1'
-991866206: 13034: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x8337020|s1'
-991866206: 13035: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339000|s1'
-991866206: 13036: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8337040|s1'
-991866206: 13037: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8337060|s1'
-991866206: 13038: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8337080|s1'
-991866206: 13039: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83370a0|s1'
-991866206: 13040: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83370c0|s1'
-991866206: 13041: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83370e0|s1'
-991866206: 13042: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337100|s1'
-991866206: 13043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337120|s1'
-991866206: 13044: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330440|s1'
-991866206: 13045: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339080|s1'
-991866206: 13046: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8337140|s1'
-991866206: 13047: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337160|s1'
-991866206: 13048: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8337180|s1'
-991866206: 13049: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x83371a0|s1'
-991866206: 13050: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83371c0|s1'
-991866206: 13051: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83371e0|s1'
-991866206: 13052: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337200|s1'
-991866206: 13053: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337220|s1'
-991866206: 13054: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337240|s1'
-991866206: 13055: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337260|s1'
-991866206: 13056: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330480|s1'
-991866206: 13057: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339100|s1'
-991866206: 13058: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8337280|s1'
-991866206: 13059: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83372a0|s1'
-991866206: 13060: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x83372c0|s1'
-991866206: 13061: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x83372e0|s1'
-991866206: 13062: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337300|s1'
-991866206: 13063: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337320|s1'
-991866206: 13064: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337340|s1'
-991866206: 13065: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337360|s1'
-991866206: 13066: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337380|s1'
-991866206: 13067: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83304c0|s1'
-991866206: 13068: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83373a0|s1'
-991866206: 13069: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339180|s1'
-991866206: 13070: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x83373c0|s1'
-991866206: 13071: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83373e0|s1'
-991866206: 13072: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8337400|s1'
-991866206: 13073: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8337420|s1'
-991866206: 13074: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8337440|s1'
-991866206: 13075: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8337460|s1'
-991866206: 13076: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337480|s1'
-991866206: 13077: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83374a0|s1'
-991866206: 13078: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83374c0|s1'
-991866206: 13079: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83374e0|s1'
-991866206: 13080: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8337500|s1'
-991866206: 13081: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337520|s1'
-991866206: 13082: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330500|s1'
-991866206: 13083: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339200|s1'
-991866206: 13084: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8337540|s1'
-991866206: 13085: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337560|s1'
-991866206: 13086: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8337580|s1'
-991866206: 13087: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x83375a0|s1'
-991866206: 13088: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83375c0|s1'
-991866206: 13089: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83375e0|s1'
-991866206: 13090: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337600|s1'
-991866206: 13091: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337620|s1'
-991866206: 13092: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8337640|s1'
-991866206: 13093: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330540|s1'
-991866206: 13094: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337660|s1'
-991866206: 13095: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339280|s1'
-991866206: 13096: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8337680|s1'
-991866206: 13097: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83376a0|s1'
-991866206: 13098: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83376c0|s1'
-991866206: 13099: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83376e0|s1'
-991866206: 13100: checking heap
-991866206: 13100: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8337700|s1'
-991866206: 13101: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8337720|s1'
-991866206: 13102: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8337740|s1'
-991866206: 13103: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337760|s1'
-991866206: 13104: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337780|s1'
-991866206: 13105: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83377a0|s1'
-991866206: 13106: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83377c0|s1'
-991866206: 13107: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83377e0|s1'
-991866206: 13108: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330580|s1'
-991866206: 13109: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339300|s1'
-991866206: 13110: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8337800|s1'
-991866206: 13111: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337820|s1'
-991866206: 13112: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8337840|s1'
-991866206: 13113: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8337860|s1'
-991866206: 13114: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337880|s1'
-991866206: 13115: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83378a0|s1'
-991866206: 13116: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83378c0|s1'
-991866206: 13117: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83378e0|s1'
-991866206: 13118: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337900|s1'
-991866206: 13119: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83305c0|s1'
-991866206: 13120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337920|s1'
-991866206: 13121: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339380|s1'
-991866206: 13122: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8337940|s1'
-991866206: 13123: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337960|s1'
-991866206: 13124: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8337980|s1'
-991866206: 13125: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83379a0|s1'
-991866206: 13126: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83379c0|s1'
-991866206: 13127: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x83379e0|s1'
-991866206: 13128: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337a00|s1'
-991866206: 13129: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337a20|s1'
-991866206: 13130: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337a40|s1'
-991866206: 13131: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337a60|s1'
-991866206: 13132: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8337a80|s1'
-991866206: 13133: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330600|s1'
-991866206: 13134: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337aa0|s1'
-991866206: 13135: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339400|s1'
-991866206: 13136: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8337ac0|s1'
-991866206: 13137: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337ae0|s1'
-991866206: 13138: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8337b00|s1'
-991866206: 13139: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8337b20|s1'
-991866206: 13140: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8337b40|s1'
-991866206: 13141: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8337b60|s1'
-991866206: 13142: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8337b80|s1'
-991866206: 13143: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337ba0|s1'
-991866206: 13144: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337bc0|s1'
-991866206: 13145: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337be0|s1'
-991866206: 13146: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8337c00|s1'
-991866206: 13147: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337c20|s1'
-991866206: 13148: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330640|s1'
-991866206: 13149: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339480|s1'
-991866206: 13150: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8337c40|s1'
-991866206: 13151: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337c60|s1'
-991866206: 13152: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8337c80|s1'
-991866206: 13153: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8337ca0|s1'
-991866206: 13154: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8337cc0|s1'
-991866206: 13155: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337ce0|s1'
-991866206: 13156: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337d00|s1'
-991866206: 13157: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337d20|s1'
-991866206: 13158: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8337d40|s1'
-991866206: 13159: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330680|s1'
-991866206: 13160: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337d60|s1'
-991866206: 13161: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339500|s1'
-991866206: 13162: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8337d80|s1'
-991866206: 13163: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337da0|s1'
-991866206: 13164: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8337dc0|s1'
-991866206: 13165: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8337de0|s1'
-991866206: 13166: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8337e00|s1'
-991866206: 13167: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8337e20|s1'
-991866206: 13168: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8337e40|s1'
-991866206: 13169: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337e60|s1'
-991866206: 13170: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337e80|s1'
-991866206: 13171: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337ea0|s1'
-991866206: 13172: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337ec0|s1'
-991866206: 13173: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337ee0|s1'
-991866206: 13174: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83306c0|s1'
-991866206: 13175: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339580|s1'
-991866206: 13176: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8337f00|s1'
-991866206: 13177: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8337f20|s1'
-991866206: 13178: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8337f40|s1'
-991866206: 13179: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8337f60|s1'
-991866206: 13180: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8337f80|s1'
-991866206: 13181: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8337fa0|s1'
-991866206: 13182: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8337fc0|s1'
-991866206: 13183: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8337fe0|s1'
-991866206: 13184: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x833b000|s1'
-991866206: 13185: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330700|s1'
-991866206: 13186: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b020|s1'
-991866206: 13187: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339600|s1'
-991866206: 13188: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x833b040|s1'
-991866206: 13189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b060|s1'
-991866206: 13190: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833b080|s1'
-991866206: 13191: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833b0a0|s1'
-991866206: 13192: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x833b0c0|s1'
-991866206: 13193: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x833b0e0|s1'
-991866206: 13194: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x833b100|s1'
-991866206: 13195: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b120|s1'
-991866206: 13196: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b140|s1'
-991866206: 13197: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b160|s1'
-991866206: 13198: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330740|s1'
-991866206: 13199: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339680|s1'
-991866206: 13200: checking heap
-991866206: 13200: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b180|s1'
-991866206: 13201: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b1a0|s1'
-991866206: 13202: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x833b1c0|s1'
-991866206: 13203: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x833b1e0|s1'
-991866206: 13204: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b200|s1'
-991866206: 13205: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b220|s1'
-991866206: 13206: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833b240|s1'
-991866206: 13207: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833b260|s1'
-991866206: 13208: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b280|s1'
-991866206: 13209: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330780|s1'
-991866206: 13210: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b2a0|s1'
-991866206: 13211: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339700|s1'
-991866206: 13212: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x833b2c0|s1'
-991866206: 13213: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b2e0|s1'
-991866206: 13214: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833b300|s1'
-991866206: 13215: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833b320|s1'
-991866206: 13216: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x833b340|s1'
-991866206: 13217: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x833b360|s1'
-991866206: 13218: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b380|s1'
-991866206: 13219: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b3a0|s1'
-991866206: 13220: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833b3c0|s1'
-991866206: 13221: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833b3e0|s1'
-991866206: 13222: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x833b400|s1'
-991866206: 13223: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b420|s1'
-991866206: 13224: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83307c0|s1'
-991866206: 13225: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339780|s1'
-991866206: 13226: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b440|s1'
-991866206: 13227: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b460|s1'
-991866206: 13228: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x833b480|s1'
-991866206: 13229: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x833b4a0|s1'
-991866206: 13230: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x833b4c0|s1'
-991866206: 13231: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b4e0|s1'
-991866206: 13232: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833b500|s1'
-991866206: 13233: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833b520|s1'
-991866206: 13234: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b540|s1'
-991866206: 13235: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b560|s1'
-991866206: 13236: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330800|s1'
-991866206: 13237: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339800|s1'
-991866206: 13238: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b580|s1'
-991866206: 13239: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b5a0|s1'
-991866206: 13240: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x833b5c0|s1'
-991866206: 13241: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x833b5e0|s1'
-991866206: 13242: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b600|s1'
-991866206: 13243: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b620|s1'
-991866206: 13244: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833b640|s1'
-991866206: 13245: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833b660|s1'
-991866206: 13246: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b680|s1'
-991866206: 13247: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b6a0|s1'
-991866206: 13248: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330840|s1'
-991866206: 13249: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339880|s1'
-991866206: 13250: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b6c0|s1'
-991866206: 13251: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b6e0|s1'
-991866206: 13252: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x833b700|s1'
-991866206: 13253: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x833b720|s1'
-991866206: 13254: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x833b740|s1'
-991866206: 13255: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b760|s1'
-991866206: 13256: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833b780|s1'
-991866206: 13257: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833b7a0|s1'
-991866206: 13258: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x833b7c0|s1'
-991866206: 13259: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b7e0|s1'
-991866206: 13260: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330880|s1'
-991866206: 13261: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339900|s1'
-991866206: 13262: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b800|s1'
-991866206: 13263: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b820|s1'
-991866206: 13264: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x833b840|s1'
-991866206: 13265: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x833b860|s1'
-991866206: 13266: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x833b880|s1'
-991866206: 13267: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833b8a0|s1'
-991866206: 13268: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833b8c0|s1'
-991866206: 13269: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833b8e0|s1'
-991866206: 13270: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833b900|s1'
-991866206: 13271: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b920|s1'
-991866206: 13272: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83308c0|s1'
-991866206: 13273: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339980|s1'
-991866206: 13274: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b940|s1'
-991866206: 13275: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b960|s1'
-991866206: 13276: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833b980|s1'
-991866206: 13277: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833b9a0|s1'
-991866206: 13278: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833b9c0|s1'
-991866206: 13279: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330900|s1'
-991866206: 13280: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833b9e0|s1'
-991866206: 13281: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833ba00|s1'
-991866206: 13282: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833ba20|s1'
-991866206: 13283: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833ba40|s1'
-991866206: 13284: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833ba60|s1'
-991866206: 13285: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833ba80|s1'
-991866206: 13286: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330940|s1'
-991866206: 13287: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339a00|s1'
-991866206: 13288: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833baa0|s1'
-991866206: 13289: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833bac0|s1'
-991866206: 13290: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833bae0|s1'
-991866206: 13291: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833bb00|s1'
-991866206: 13292: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833bb20|s1'
-991866206: 13293: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330980|s1'
-991866206: 13294: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833bb40|s1'
-991866206: 13295: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833bb60|s1'
-991866206: 13296: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833bb80|s1'
-991866206: 13297: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833bba0|s1'
-991866206: 13298: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833bbc0|s1'
-991866206: 13299: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833bbe0|s1'
-991866206: 13300: checking heap
-991866206: 13300: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83309c0|s1'
-991866206: 13301: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339a80|s1'
-991866206: 13302: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833bc00|s1'
-991866206: 13303: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833bc20|s1'
-991866206: 13304: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833bc40|s1'
-991866206: 13305: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833bc60|s1'
-991866206: 13306: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833bc80|s1'
-991866206: 13307: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330a00|s1'
-991866206: 13308: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833bca0|s1'
-991866206: 13309: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833bcc0|s1'
-991866206: 13310: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833bce0|s1'
-991866206: 13311: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833bd00|s1'
-991866206: 13312: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339b00|s1'
-991866206: 13313: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833bd20|s1'
-991866206: 13314: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833bd40|s1'
-991866206: 13315: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833bd60|s1'
-991866206: 13316: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833bd80|s1'
-991866206: 13317: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339b80|s1'
-991866206: 13318: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833bda0|s1'
-991866206: 13319: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833bdc0|s1'
-991866206: 13320: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833bde0|s1'
-991866206: 13321: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833be00|s1'
-991866206: 13322: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833be20|s1'
-991866206: 13323: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833be40|s1'
-991866206: 13324: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330a40|s1'
-991866206: 13325: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339c00|s1'
-991866206: 13326: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833be60|s1'
-991866206: 13327: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833be80|s1'
-991866206: 13328: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833bea0|s1'
-991866206: 13329: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833bec0|s1'
-991866206: 13330: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833bee0|s1'
-991866206: 13331: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330a80|s1'
-991866206: 13332: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833bf00|s1'
-991866206: 13333: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833bf20|s1'
-991866206: 13334: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833bf40|s1'
-991866206: 13335: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833bf60|s1'
-991866206: 13336: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339c80|s1'
-991866206: 13337: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833bf80|s1'
-991866206: 13338: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833bfa0|s1'
-991866206: 13339: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833bfc0|s1'
-991866206: 13340: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833bfe0|s1'
-991866206: 13341: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339d00|s1'
-991866206: 13342: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833d000|s1'
-991866206: 13343: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833d020|s1'
-991866206: 13344: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833d040|s1'
-991866206: 13345: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833d060|s1'
-991866206: 13346: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d080|s1'
-991866206: 13347: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d0a0|s1'
-991866206: 13348: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330ac0|s1'
-991866206: 13349: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339d80|s1'
-991866206: 13350: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d0c0|s1'
-991866206: 13351: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d0e0|s1'
-991866206: 13352: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d100|s1'
-991866206: 13353: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d120|s1'
-991866206: 13354: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833d140|s1'
-991866206: 13355: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330b00|s1'
-991866206: 13356: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d160|s1'
-991866206: 13357: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833d180|s1'
-991866206: 13358: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833d1a0|s1'
-991866206: 13359: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833d1c0|s1'
-991866206: 13360: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d1e0|s1'
-991866206: 13361: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d200|s1'
-991866206: 13362: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330b40|s1'
-991866206: 13363: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339e00|s1'
-991866206: 13364: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d220|s1'
-991866206: 13365: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d240|s1'
-991866206: 13366: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d260|s1'
-991866206: 13367: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d280|s1'
-991866206: 13368: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833d2a0|s1'
-991866206: 13369: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330b80|s1'
-991866206: 13370: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d2c0|s1'
-991866206: 13371: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833d2e0|s1'
-991866206: 13372: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833d300|s1'
-991866206: 13373: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833d320|s1'
-991866206: 13374: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x833d340|s1'
-991866206: 13375: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d360|s1'
-991866206: 13376: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330bc0|s1'
-991866206: 13377: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339e80|s1'
-991866206: 13378: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d380|s1'
-991866206: 13379: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d3a0|s1'
-991866206: 13380: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d3c0|s1'
-991866206: 13381: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d3e0|s1'
-991866206: 13382: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833d400|s1'
-991866206: 13383: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330c00|s1'
-991866206: 13384: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x833d420|s1'
-991866206: 13385: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833d440|s1'
-991866206: 13386: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833d460|s1'
-991866206: 13387: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833d480|s1'
-991866206: 13388: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d4a0|s1'
-991866206: 13389: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d4c0|s1'
-991866206: 13390: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330c40|s1'
-991866206: 13391: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339f00|s1'
-991866206: 13392: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d4e0|s1'
-991866206: 13393: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d500|s1'
-991866206: 13394: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d520|s1'
-991866206: 13395: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d540|s1'
-991866206: 13396: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833d560|s1'
-991866206: 13397: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330c80|s1'
-991866206: 13398: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d580|s1'
-991866206: 13399: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833d5a0|s1'
-991866206: 13400: checking heap
-991866206: 13400: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833d5c0|s1'
-991866206: 13401: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833d5e0|s1'
-991866206: 13402: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8339f80|s1'
-991866206: 13403: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833d600|s1'
-991866206: 13404: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833d620|s1'
-991866206: 13405: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833d640|s1'
-991866206: 13406: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833d660|s1'
-991866206: 13407: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f000|s1'
-991866206: 13408: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833d680|s1'
-991866206: 13409: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833d6a0|s1'
-991866206: 13410: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833d6c0|s1'
-991866206: 13411: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833d6e0|s1'
-991866206: 13412: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d700|s1'
-991866206: 13413: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d720|s1'
-991866206: 13414: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330cc0|s1'
-991866206: 13415: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f080|s1'
-991866206: 13416: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d740|s1'
-991866206: 13417: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d760|s1'
-991866206: 13418: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d780|s1'
-991866206: 13419: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d7a0|s1'
-991866206: 13420: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833d7c0|s1'
-991866206: 13421: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330d00|s1'
-991866206: 13422: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d7e0|s1'
-991866206: 13423: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833d800|s1'
-991866206: 13424: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833d820|s1'
-991866206: 13425: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833d840|s1'
-991866206: 13426: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d860|s1'
-991866206: 13427: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d880|s1'
-991866206: 13428: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330d40|s1'
-991866206: 13429: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f100|s1'
-991866206: 13430: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d8a0|s1'
-991866206: 13431: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d8c0|s1'
-991866206: 13432: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833d8e0|s1'
-991866206: 13433: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833d900|s1'
-991866206: 13434: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833d920|s1'
-991866206: 13435: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330d80|s1'
-991866206: 13436: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x833d940|s1'
-991866206: 13437: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833d960|s1'
-991866206: 13438: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f180|s1'
-991866206: 13439: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833d980|s1'
-991866206: 13440: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833d9a0|s1'
-991866206: 13441: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833d9c0|s1'
-991866206: 13442: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833d9e0|s1'
-991866206: 13443: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f200|s1'
-991866206: 13444: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833da00|s1'
-991866206: 13445: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833da20|s1'
-991866206: 13446: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833da40|s1'
-991866206: 13447: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833da60|s1'
-991866206: 13448: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833da80|s1'
-991866206: 13449: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833daa0|s1'
-991866206: 13450: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330dc0|s1'
-991866206: 13451: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f280|s1'
-991866206: 13452: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833dac0|s1'
-991866206: 13453: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833dae0|s1'
-991866206: 13454: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833db00|s1'
-991866206: 13455: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833db20|s1'
-991866206: 13456: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833db40|s1'
-991866206: 13457: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330e00|s1'
-991866206: 13458: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x833db60|s1'
-991866206: 13459: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833db80|s1'
-991866206: 13460: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833dba0|s1'
-991866206: 13461: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833dbc0|s1'
-991866206: 13462: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f300|s1'
-991866206: 13463: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833dbe0|s1'
-991866206: 13464: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833dc00|s1'
-991866206: 13465: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833dc20|s1'
-991866206: 13466: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833dc40|s1'
-991866206: 13467: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f380|s1'
-991866206: 13468: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x833dc60|s1'
-991866206: 13469: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x833dc80|s1'
-991866206: 13470: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833dca0|s1'
-991866206: 13471: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833dcc0|s1'
-991866206: 13472: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x833dce0|s1'
-991866206: 13473: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833dd00|s1'
-991866206: 13474: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330e40|s1'
-991866206: 13475: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f400|s1'
-991866206: 13476: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833dd20|s1'
-991866206: 13477: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833dd40|s1'
-991866206: 13478: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833dd60|s1'
-991866206: 13479: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833dd80|s1'
-991866206: 13480: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833dda0|s1'
-991866206: 13481: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330e80|s1'
-991866206: 13482: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x833ddc0|s1'
-991866206: 13483: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x833dde0|s1'
-991866206: 13484: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x833de00|s1'
-991866206: 13485: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x833de20|s1'
-991866206: 13486: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f480|s1'
-991866206: 13487: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x833de40|s1'
-991866206: 13488: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f500|s1'
-991866206: 13489: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x833de60|s1'
-991866206: 13490: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833de80|s1'
-991866206: 13491: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833dea0|s1'
-991866206: 13492: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x833dec0|s1'
-991866206: 13493: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x833dee0|s1'
-991866206: 13494: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x833df00|s1'
-991866206: 13495: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833df20|s1'
-991866206: 13496: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330ec0|s1'
-991866206: 13497: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f580|s1'
-991866206: 13498: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833df40|s1'
-991866206: 13499: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833df60|s1'
-991866206: 13500: checking heap
-991866206: 13500: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x833df80|s1'
-991866206: 13501: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x833dfa0|s1'
-991866206: 13502: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x833dfc0|s1'
-991866206: 13503: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330f00|s1'
-991866206: 13504: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x833dfe0|s1'
-991866206: 13505: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341000|s1'
-991866206: 13506: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8341020|s1'
-991866206: 13507: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8341040|s1'
-991866206: 13508: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f600|s1'
-991866206: 13509: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8341060|s1'
-991866206: 13510: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8341080|s1'
-991866206: 13511: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83410a0|s1'
-991866206: 13512: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83410c0|s1'
-991866206: 13513: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f680|s1'
-991866206: 13514: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83410e0|s1'
-991866206: 13515: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8341100|s1'
-991866206: 13516: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341120|s1'
-991866206: 13517: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341140|s1'
-991866206: 13518: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8341160|s1'
-991866206: 13519: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341180|s1'
-991866206: 13520: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330f40|s1'
-991866206: 13521: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f700|s1'
-991866206: 13522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83411a0|s1'
-991866206: 13523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83411c0|s1'
-991866206: 13524: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83411e0|s1'
-991866206: 13525: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341200|s1'
-991866206: 13526: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341220|s1'
-991866206: 13527: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8330f80|s1'
-991866206: 13528: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8341240|s1'
-991866206: 13529: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341260|s1'
-991866206: 13530: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8341280|s1'
-991866206: 13531: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83412a0|s1'
-991866206: 13532: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f780|s1'
-991866206: 13533: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83412c0|s1'
-991866206: 13534: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83412e0|s1'
-991866206: 13535: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341300|s1'
-991866206: 13536: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341320|s1'
-991866206: 13537: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f800|s1'
-991866206: 13538: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8341340|s1'
-991866206: 13539: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8341360|s1'
-991866206: 13540: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341380|s1'
-991866206: 13541: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83413a0|s1'
-991866206: 13542: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83413c0|s1'
-991866206: 13543: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83413e0|s1'
-991866206: 13544: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8330fc0|s1'
-991866206: 13545: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f880|s1'
-991866206: 13546: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341400|s1'
-991866206: 13547: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341420|s1'
-991866206: 13548: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341440|s1'
-991866206: 13549: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341460|s1'
-991866206: 13550: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341480|s1'
-991866206: 13551: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344000|s1'
-991866206: 13552: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83414a0|s1'
-991866206: 13553: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83414c0|s1'
-991866206: 13554: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83414e0|s1'
-991866206: 13555: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8341500|s1'
-991866206: 13556: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f900|s1'
-991866206: 13557: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8341520|s1'
-991866206: 13558: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8341540|s1'
-991866206: 13559: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341560|s1'
-991866206: 13560: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341580|s1'
-991866206: 13561: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833f980|s1'
-991866206: 13562: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83415a0|s1'
-991866206: 13563: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83415c0|s1'
-991866206: 13564: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83415e0|s1'
-991866206: 13565: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341600|s1'
-991866206: 13566: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8341620|s1'
-991866206: 13567: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341640|s1'
-991866206: 13568: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344040|s1'
-991866206: 13569: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fa00|s1'
-991866206: 13570: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341660|s1'
-991866206: 13571: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341680|s1'
-991866206: 13572: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83416a0|s1'
-991866206: 13573: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83416c0|s1'
-991866206: 13574: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83416e0|s1'
-991866206: 13575: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344080|s1'
-991866206: 13576: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8341700|s1'
-991866206: 13577: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341720|s1'
-991866206: 13578: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8341740|s1'
-991866206: 13579: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8341760|s1'
-991866206: 13580: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fa80|s1'
-991866206: 13581: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8341780|s1'
-991866206: 13582: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83417a0|s1'
-991866206: 13583: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83417c0|s1'
-991866206: 13584: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83417e0|s1'
-991866206: 13585: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fb00|s1'
-991866206: 13586: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8341800|s1'
-991866206: 13587: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8341820|s1'
-991866206: 13588: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341840|s1'
-991866206: 13589: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341860|s1'
-991866206: 13590: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341880|s1'
-991866206: 13591: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83418a0|s1'
-991866206: 13592: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83440c0|s1'
-991866206: 13593: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fb80|s1'
-991866206: 13594: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83418c0|s1'
-991866206: 13595: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83418e0|s1'
-991866206: 13596: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341900|s1'
-991866206: 13597: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341920|s1'
-991866206: 13598: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341940|s1'
-991866206: 13599: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344100|s1'
-991866206: 13600: checking heap
-991866206: 13600: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341960|s1'
-991866206: 13601: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341980|s1'
-991866206: 13602: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83419a0|s1'
-991866206: 13603: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83419c0|s1'
-991866206: 13604: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83419e0|s1'
-991866206: 13605: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341a00|s1'
-991866206: 13606: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344140|s1'
-991866206: 13607: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fc00|s1'
-991866206: 13608: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341a20|s1'
-991866206: 13609: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341a40|s1'
-991866206: 13610: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341a60|s1'
-991866206: 13611: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341a80|s1'
-991866206: 13612: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341aa0|s1'
-991866206: 13613: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344180|s1'
-991866206: 13614: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341ac0|s1'
-991866206: 13615: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341ae0|s1'
-991866206: 13616: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8341b00|s1'
-991866206: 13617: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8341b20|s1'
-991866206: 13618: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8341b40|s1'
-991866206: 13619: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341b60|s1'
-991866206: 13620: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83441c0|s1'
-991866206: 13621: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fc80|s1'
-991866206: 13622: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341b80|s1'
-991866206: 13623: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341ba0|s1'
-991866206: 13624: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341bc0|s1'
-991866206: 13625: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341be0|s1'
-991866206: 13626: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341c00|s1'
-991866206: 13627: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344200|s1'
-991866206: 13628: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8341c20|s1'
-991866206: 13629: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341c40|s1'
-991866206: 13630: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341c60|s1'
-991866206: 13631: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341c80|s1'
-991866206: 13632: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344240|s1'
-991866206: 13633: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fd00|s1'
-991866206: 13634: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341ca0|s1'
-991866206: 13635: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341cc0|s1'
-991866206: 13636: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341ce0|s1'
-991866206: 13637: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341d00|s1'
-991866206: 13638: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341d20|s1'
-991866206: 13639: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344280|s1'
-991866206: 13640: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341d40|s1'
-991866206: 13641: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341d60|s1'
-991866206: 13642: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8341d80|s1'
-991866206: 13643: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8341da0|s1'
-991866206: 13644: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fd80|s1'
-991866206: 13645: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8341dc0|s1'
-991866206: 13646: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fe00|s1'
-991866206: 13647: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8341de0|s1'
-991866206: 13648: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341e00|s1'
-991866206: 13649: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341e20|s1'
-991866206: 13650: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8341e40|s1'
-991866206: 13651: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8341e60|s1'
-991866206: 13652: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341e80|s1'
-991866206: 13653: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341ea0|s1'
-991866206: 13654: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83442c0|s1'
-991866206: 13655: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833fe80|s1'
-991866206: 13656: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341ec0|s1'
-991866206: 13657: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341ee0|s1'
-991866206: 13658: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8341f00|s1'
-991866206: 13659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8341f20|s1'
-991866206: 13660: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8341f40|s1'
-991866206: 13661: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344300|s1'
-991866206: 13662: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341f60|s1'
-991866206: 13663: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8341f80|s1'
-991866206: 13664: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8341fa0|s1'
-991866206: 13665: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8341fc0|s1'
-991866206: 13666: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8341fe0|s1'
-991866206: 13667: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346000|s1'
-991866206: 13668: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344340|s1'
-991866206: 13669: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833ff00|s1'
-991866206: 13670: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8346020|s1'
-991866206: 13671: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346040|s1'
-991866206: 13672: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8346060|s1'
-991866206: 13673: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346080|s1'
-991866206: 13674: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83460a0|s1'
-991866206: 13675: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344380|s1'
-991866206: 13676: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83460c0|s1'
-991866206: 13677: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83460e0|s1'
-991866206: 13678: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346100|s1'
-991866206: 13679: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346120|s1'
-991866206: 13680: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346140|s1'
-991866206: 13681: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346160|s1'
-991866206: 13682: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83443c0|s1'
-991866206: 13683: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x833ff80|s1'
-991866206: 13684: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346180|s1'
-991866206: 13685: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x83461a0|s1'
-991866206: 13686: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x83461c0|s1'
-991866206: 13687: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83461e0|s1'
-991866206: 13688: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346200|s1'
-991866206: 13689: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346220|s1'
-991866206: 13690: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346240|s1'
-991866206: 13691: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348000|s1'
-991866206: 13692: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8346260|s1'
-991866206: 13693: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8346280|s1'
-991866206: 13694: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83462a0|s1'
-991866206: 13695: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83462c0|s1'
-991866206: 13696: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83462e0|s1'
-991866206: 13697: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344400|s1'
-991866206: 13698: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348080|s1'
-991866206: 13699: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8346300|s1'
-991866206: 13700: checking heap
-991866206: 13700: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346320|s1'
-991866206: 13701: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8346340|s1'
-991866206: 13702: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346360|s1'
-991866206: 13703: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8346380|s1'
-991866206: 13704: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344440|s1'
-991866206: 13705: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83463a0|s1'
-991866206: 13706: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83463c0|s1'
-991866206: 13707: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83463e0|s1'
-991866206: 13708: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346400|s1'
-991866206: 13709: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346420|s1'
-991866206: 13710: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346440|s1'
-991866206: 13711: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344480|s1'
-991866206: 13712: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348100|s1'
-991866206: 13713: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8346460|s1'
-991866206: 13714: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346480|s1'
-991866206: 13715: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83464a0|s1'
-991866206: 13716: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83464c0|s1'
-991866206: 13717: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83464e0|s1'
-991866206: 13718: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83444c0|s1'
-991866206: 13719: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346500|s1'
-991866206: 13720: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346520|s1'
-991866206: 13721: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346540|s1'
-991866206: 13722: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346560|s1'
-991866206: 13723: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346580|s1'
-991866206: 13724: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83465a0|s1'
-991866206: 13725: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344500|s1'
-991866206: 13726: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348180|s1'
-991866206: 13727: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83465c0|s1'
-991866206: 13728: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83465e0|s1'
-991866206: 13729: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8346600|s1'
-991866206: 13730: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8346620|s1'
-991866206: 13731: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346640|s1'
-991866206: 13732: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346660|s1'
-991866206: 13733: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346680|s1'
-991866206: 13734: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83466a0|s1'
-991866206: 13735: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83466c0|s1'
-991866206: 13736: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344540|s1'
-991866206: 13737: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83466e0|s1'
-991866206: 13738: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348200|s1'
-991866206: 13739: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8346700|s1'
-991866206: 13740: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346720|s1'
-991866206: 13741: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8346740|s1'
-991866206: 13742: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8346760|s1'
-991866206: 13743: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8346780|s1'
-991866206: 13744: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x83467a0|s1'
-991866206: 13745: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83467c0|s1'
-991866206: 13746: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83467e0|s1'
-991866206: 13747: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346800|s1'
-991866206: 13748: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346820|s1'
-991866206: 13749: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8346840|s1'
-991866206: 13750: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344580|s1'
-991866206: 13751: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346860|s1'
-991866206: 13752: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348280|s1'
-991866206: 13753: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8346880|s1'
-991866206: 13754: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83468a0|s1'
-991866206: 13755: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83468c0|s1'
-991866206: 13756: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83468e0|s1'
-991866206: 13757: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8346900|s1'
-991866206: 13758: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8346920|s1'
-991866206: 13759: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8346940|s1'
-991866206: 13760: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346960|s1'
-991866206: 13761: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346980|s1'
-991866206: 13762: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83469a0|s1'
-991866206: 13763: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83469c0|s1'
-991866206: 13764: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83445c0|s1'
-991866206: 13765: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83469e0|s1'
-991866206: 13766: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348300|s1'
-991866206: 13767: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8346a00|s1'
-991866206: 13768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346a20|s1'
-991866206: 13769: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8346a40|s1'
-991866206: 13770: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8346a60|s1'
-991866206: 13771: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8346a80|s1'
-991866206: 13772: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8346aa0|s1'
-991866206: 13773: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8346ac0|s1'
-991866206: 13774: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346ae0|s1'
-991866206: 13775: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346b00|s1'
-991866206: 13776: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346b20|s1'
-991866206: 13777: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346b40|s1'
-991866206: 13778: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344600|s1'
-991866206: 13779: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346b60|s1'
-991866206: 13780: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348380|s1'
-991866206: 13781: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8346b80|s1'
-991866206: 13782: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346ba0|s1'
-991866206: 13783: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8346bc0|s1'
-991866206: 13784: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8346be0|s1'
-991866206: 13785: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8346c00|s1'
-991866206: 13786: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8346c20|s1'
-991866206: 13787: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346c40|s1'
-991866206: 13788: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346c60|s1'
-991866206: 13789: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346c80|s1'
-991866206: 13790: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346ca0|s1'
-991866206: 13791: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346cc0|s1'
-991866206: 13792: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344640|s1'
-991866206: 13793: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346ce0|s1'
-991866206: 13794: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348400|s1'
-991866206: 13795: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8346d00|s1'
-991866206: 13796: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346d20|s1'
-991866206: 13797: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8346d40|s1'
-991866206: 13798: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8346d60|s1'
-991866206: 13799: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8346d80|s1'
-991866206: 13800: checking heap
-991866206: 13800: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x8346da0|s1'
-991866206: 13801: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346dc0|s1'
-991866206: 13802: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346de0|s1'
-991866206: 13803: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346e00|s1'
-991866206: 13804: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346e20|s1'
-991866206: 13805: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8346e40|s1'
-991866206: 13806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346e60|s1'
-991866206: 13807: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344680|s1'
-991866206: 13808: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348480|s1'
-991866206: 13809: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346e80|s1'
-991866206: 13810: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8346ea0|s1'
-991866206: 13811: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8346ec0|s1'
-991866206: 13812: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x8346ee0|s1'
-991866206: 13813: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8346f00|s1'
-991866206: 13814: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8346f20|s1'
-991866206: 13815: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8346f40|s1'
-991866206: 13816: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8346f60|s1'
-991866206: 13817: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346f80|s1'
-991866206: 13818: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83446c0|s1'
-991866206: 13819: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348500|s1'
-991866206: 13820: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8346fa0|s1'
-991866206: 13821: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8346fc0|s1'
-991866206: 13822: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8346fe0|s1'
-991866206: 13823: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x834a000|s1'
-991866206: 13824: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a020|s1'
-991866206: 13825: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a040|s1'
-991866206: 13826: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834a060|s1'
-991866206: 13827: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834a080|s1'
-991866206: 13828: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a0a0|s1'
-991866206: 13829: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a0c0|s1'
-991866206: 13830: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344700|s1'
-991866206: 13831: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348580|s1'
-991866206: 13832: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a0e0|s1'
-991866206: 13833: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a100|s1'
-991866206: 13834: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x834a120|s1'
-991866206: 13835: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x834a140|s1'
-991866206: 13836: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a160|s1'
-991866206: 13837: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a180|s1'
-991866206: 13838: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834a1a0|s1'
-991866206: 13839: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834a1c0|s1'
-991866206: 13840: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a1e0|s1'
-991866206: 13841: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a200|s1'
-991866206: 13842: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344740|s1'
-991866206: 13843: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348600|s1'
-991866206: 13844: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a220|s1'
-991866206: 13845: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a240|s1'
-991866206: 13846: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x834a260|s1'
-991866206: 13847: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x834a280|s1'
-991866206: 13848: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a2a0|s1'
-991866206: 13849: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a2c0|s1'
-991866206: 13850: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834a2e0|s1'
-991866206: 13851: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834a300|s1'
-991866206: 13852: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834a320|s1'
-991866206: 13853: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834a340|s1'
-991866206: 13854: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348680|s1'
-991866206: 13855: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x834a360|s1'
-991866206: 13856: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x834a380|s1'
-991866206: 13857: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834a3a0|s1'
-991866206: 13858: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834a3c0|s1'
-991866206: 13859: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348700|s1'
-991866206: 13860: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x834a3e0|s1'
-991866206: 13861: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x834a400|s1'
-991866206: 13862: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834a420|s1'
-991866206: 13863: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a440|s1'
-991866206: 13864: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344780|s1'
-991866206: 13865: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348780|s1'
-991866206: 13866: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a460|s1'
-991866206: 13867: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a480|s1'
-991866206: 13868: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a4a0|s1'
-991866206: 13869: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a4c0|s1'
-991866206: 13870: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x834a4e0|s1'
-991866206: 13871: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83447c0|s1'
-991866206: 13872: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834a500|s1'
-991866206: 13873: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a520|s1'
-991866206: 13874: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834a540|s1'
-991866206: 13875: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834a560|s1'
-991866206: 13876: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x834a580|s1'
-991866206: 13877: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a5a0|s1'
-991866206: 13878: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344800|s1'
-991866206: 13879: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348800|s1'
-991866206: 13880: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a5c0|s1'
-991866206: 13881: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a5e0|s1'
-991866206: 13882: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a600|s1'
-991866206: 13883: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a620|s1'
-991866206: 13884: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x834a640|s1'
-991866206: 13885: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344840|s1'
-991866206: 13886: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x834a660|s1'
-991866206: 13887: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a680|s1'
-991866206: 13888: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834a6a0|s1'
-991866206: 13889: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834a6c0|s1'
-991866206: 13890: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a6e0|s1'
-991866206: 13891: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a700|s1'
-991866206: 13892: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344880|s1'
-991866206: 13893: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348880|s1'
-991866206: 13894: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a720|s1'
-991866206: 13895: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x834a740|s1'
-991866206: 13896: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x834a760|s1'
-991866206: 13897: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834a780|s1'
-991866206: 13898: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a7a0|s1'
-991866206: 13899: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348900|s1'
-991866206: 13900: checking heap
-991866206: 13900: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x834a7c0|s1'
-991866206: 13901: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834a7e0|s1'
-991866206: 13902: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834a800|s1'
-991866206: 13903: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834a820|s1'
-991866206: 13904: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a840|s1'
-991866206: 13905: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83448c0|s1'
-991866206: 13906: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348980|s1'
-991866206: 13907: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a860|s1'
-991866206: 13908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a880|s1'
-991866206: 13909: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834a8a0|s1'
-991866206: 13910: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834a8c0|s1'
-991866206: 13911: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x834a8e0|s1'
-991866206: 13912: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344900|s1'
-991866206: 13913: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834a900|s1'
-991866206: 13914: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834a920|s1'
-991866206: 13915: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834a940|s1'
-991866206: 13916: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834a960|s1'
-991866206: 13917: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348a00|s1'
-991866206: 13918: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x834a980|s1'
-991866206: 13919: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834a9a0|s1'
-991866206: 13920: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834a9c0|s1'
-991866206: 13921: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834a9e0|s1'
-991866206: 13922: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834aa00|s1'
-991866206: 13923: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344940|s1'
-991866206: 13924: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348a80|s1'
-991866206: 13925: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834aa20|s1'
-991866206: 13926: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834aa40|s1'
-991866206: 13927: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834aa60|s1'
-991866206: 13928: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834aa80|s1'
-991866206: 13929: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x834aaa0|s1'
-991866206: 13930: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344980|s1'
-991866206: 13931: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834aac0|s1'
-991866206: 13932: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834aae0|s1'
-991866206: 13933: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834ab00|s1'
-991866206: 13934: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834ab20|s1'
-991866206: 13935: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x834ab40|s1'
-991866206: 13936: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834ab60|s1'
-991866206: 13937: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83449c0|s1'
-991866206: 13938: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348b00|s1'
-991866206: 13939: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834ab80|s1'
-991866206: 13940: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x834aba0|s1'
-991866206: 13941: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x834abc0|s1'
-991866206: 13942: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x834abe0|s1'
-991866206: 13943: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834ac00|s1'
-991866206: 13944: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834ac20|s1'
-991866206: 13945: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834ac40|s1'
-991866206: 13946: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834ac60|s1'
-991866206: 13947: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834ac80|s1'
-991866206: 13948: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344a00|s1'
-991866206: 13949: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348b80|s1'
-991866206: 13950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834aca0|s1'
-991866206: 13951: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x834acc0|s1'
-991866206: 13952: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x834ace0|s1'
-991866206: 13953: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834ad00|s1'
-991866206: 13954: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834ad20|s1'
-991866206: 13955: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834ad40|s1'
-991866206: 13956: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834ad60|s1'
-991866206: 13957: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834ad80|s1'
-991866206: 13958: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834ada0|s1'
-991866206: 13959: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344a40|s1'
-991866206: 13960: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348c00|s1'
-991866206: 13961: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834adc0|s1'
-991866206: 13962: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834ade0|s1'
-991866206: 13963: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x834ae00|s1'
-991866206: 13964: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x834ae20|s1'
-991866206: 13965: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834ae40|s1'
-991866206: 13966: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834ae60|s1'
-991866206: 13967: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834ae80|s1'
-991866206: 13968: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834aea0|s1'
-991866206: 13969: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834aec0|s1'
-991866206: 13970: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344a80|s1'
-991866206: 13971: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834aee0|s1'
-991866206: 13972: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348c80|s1'
-991866206: 13973: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834af00|s1'
-991866206: 13974: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834af20|s1'
-991866206: 13975: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834af40|s1'
-991866206: 13976: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834af60|s1'
-991866206: 13977: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834af80|s1'
-991866206: 13978: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834afa0|s1'
-991866206: 13979: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834afc0|s1'
-991866206: 13980: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834afe0|s1'
-991866206: 13981: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c000|s1'
-991866206: 13982: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c020|s1'
-991866206: 13983: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834c040|s1'
-991866206: 13984: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344ac0|s1'
-991866206: 13985: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c060|s1'
-991866206: 13986: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348d00|s1'
-991866206: 13987: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c080|s1'
-991866206: 13988: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c0a0|s1'
-991866206: 13989: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c0c0|s1'
-991866206: 13990: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c0e0|s1'
-991866206: 13991: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834c100|s1'
-991866206: 13992: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834c120|s1'
-991866206: 13993: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834c140|s1'
-991866206: 13994: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834c160|s1'
-991866206: 13995: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c180|s1'
-991866206: 13996: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c1a0|s1'
-991866206: 13997: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834c1c0|s1'
-991866206: 13998: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344b00|s1'
-991866206: 13999: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c1e0|s1'
-991866206: 14000: checking heap
-991866206: 14000: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348d80|s1'
-991866206: 14001: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c200|s1'
-991866206: 14002: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c220|s1'
-991866206: 14003: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c240|s1'
-991866206: 14004: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c260|s1'
-991866206: 14005: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834c280|s1'
-991866206: 14006: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834c2a0|s1'
-991866206: 14007: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834c2c0|s1'
-991866206: 14008: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834c2e0|s1'
-991866206: 14009: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c300|s1'
-991866206: 14010: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c320|s1'
-991866206: 14011: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x834c340|s1'
-991866206: 14012: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344b40|s1'
-991866206: 14013: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c360|s1'
-991866206: 14014: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348e00|s1'
-991866206: 14015: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c380|s1'
-991866206: 14016: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c3a0|s1'
-991866206: 14017: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c3c0|s1'
-991866206: 14018: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c3e0|s1'
-991866206: 14019: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834c400|s1'
-991866206: 14020: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834c420|s1'
-991866206: 14021: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x834c440|s1'
-991866206: 14022: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834c460|s1'
-991866206: 14023: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c480|s1'
-991866206: 14024: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c4a0|s1'
-991866206: 14025: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x834c4c0|s1'
-991866206: 14026: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344b80|s1'
-991866206: 14027: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c4e0|s1'
-991866206: 14028: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348e80|s1'
-991866206: 14029: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c500|s1'
-991866206: 14030: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c520|s1'
-991866206: 14031: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c540|s1'
-991866206: 14032: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c560|s1'
-991866206: 14033: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834c580|s1'
-991866206: 14034: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834c5a0|s1'
-991866206: 14035: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x834c5c0|s1'
-991866206: 14036: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834c5e0|s1'
-991866206: 14037: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c600|s1'
-991866206: 14038: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c620|s1'
-991866206: 14039: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x834c640|s1'
-991866206: 14040: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344bc0|s1'
-991866206: 14041: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c660|s1'
-991866206: 14042: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348f00|s1'
-991866206: 14043: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c680|s1'
-991866206: 14044: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c6a0|s1'
-991866206: 14045: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c6c0|s1'
-991866206: 14046: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c6e0|s1'
-991866206: 14047: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834c700|s1'
-991866206: 14048: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834c720|s1'
-991866206: 14049: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x834c740|s1'
-991866206: 14050: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834c760|s1'
-991866206: 14051: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c780|s1'
-991866206: 14052: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c7a0|s1'
-991866206: 14053: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834c7c0|s1'
-991866206: 14054: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344c00|s1'
-991866206: 14055: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c7e0|s1'
-991866206: 14056: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8348f80|s1'
-991866206: 14057: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c800|s1'
-991866206: 14058: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c820|s1'
-991866206: 14059: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c840|s1'
-991866206: 14060: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c860|s1'
-991866206: 14061: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834c880|s1'
-991866206: 14062: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834c8a0|s1'
-991866206: 14063: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834c8c0|s1'
-991866206: 14064: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834c8e0|s1'
-991866206: 14065: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834c900|s1'
-991866206: 14066: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834c920|s1'
-991866206: 14067: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834c940|s1'
-991866206: 14068: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344c40|s1'
-991866206: 14069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c960|s1'
-991866206: 14070: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e000|s1'
-991866206: 14071: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834c980|s1'
-991866206: 14072: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834c9a0|s1'
-991866206: 14073: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834c9c0|s1'
-991866206: 14074: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834c9e0|s1'
-991866206: 14075: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834ca00|s1'
-991866206: 14076: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834ca20|s1'
-991866206: 14077: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834ca40|s1'
-991866206: 14078: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834ca60|s1'
-991866206: 14079: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834ca80|s1'
-991866206: 14080: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834caa0|s1'
-991866206: 14081: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834cac0|s1'
-991866206: 14082: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344c80|s1'
-991866206: 14083: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cae0|s1'
-991866206: 14084: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e080|s1'
-991866206: 14085: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834cb00|s1'
-991866206: 14086: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cb20|s1'
-991866206: 14087: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834cb40|s1'
-991866206: 14088: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834cb60|s1'
-991866206: 14089: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834cb80|s1'
-991866206: 14090: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834cba0|s1'
-991866206: 14091: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834cbc0|s1'
-991866206: 14092: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834cbe0|s1'
-991866206: 14093: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834cc00|s1'
-991866206: 14094: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834cc20|s1'
-991866206: 14095: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834cc40|s1'
-991866206: 14096: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344cc0|s1'
-991866206: 14097: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cc60|s1'
-991866206: 14098: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e100|s1'
-991866206: 14099: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834cc80|s1'
-991866206: 14100: checking heap
-991866206: 14100: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cca0|s1'
-991866206: 14101: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834ccc0|s1'
-991866206: 14102: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834cce0|s1'
-991866206: 14103: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834cd00|s1'
-991866206: 14104: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834cd20|s1'
-991866206: 14105: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x834cd40|s1'
-991866206: 14106: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834cd60|s1'
-991866206: 14107: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834cd80|s1'
-991866206: 14108: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834cda0|s1'
-991866206: 14109: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834cdc0|s1'
-991866206: 14110: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344d00|s1'
-991866206: 14111: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cde0|s1'
-991866206: 14112: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e180|s1'
-991866206: 14113: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x834ce00|s1'
-991866206: 14114: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834ce20|s1'
-991866206: 14115: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x834ce40|s1'
-991866206: 14116: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x834ce60|s1'
-991866206: 14117: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x834ce80|s1'
-991866206: 14118: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x834cea0|s1'
-991866206: 14119: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x834cec0|s1'
-991866206: 14120: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x834cee0|s1'
-991866206: 14121: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x834cf00|s1'
-991866206: 14122: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x834cf20|s1'
-991866206: 14123: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x834cf40|s1'
-991866206: 14124: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cf60|s1'
-991866206: 14125: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344d40|s1'
-991866206: 14126: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e200|s1'
-991866206: 14127: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x834cf80|s1'
-991866206: 14128: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x834cfa0|s1'
-991866206: 14129: *** alloc: at 'uentry.c:3867' for 4 bytes, got '0x834cfc0|s1'
-991866206: 14130: *** alloc: at 'uentry.c:3868' for 16 bytes, got '0x834cfe0|s1'
-991866206: 14131: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350000|s1'
-991866206: 14132: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350020|s1'
-991866206: 14133: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e280|s1'
-991866206: 14134: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350040|s1'
-991866206: 14135: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350060|s1'
-991866206: 14136: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x8350080|s1'
-991866206: 14137: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83500a0|s1'
-991866206: 14138: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83500c0|s1'
-991866206: 14139: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83500e0|s1'
-991866206: 14140: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e300|s1'
-991866206: 14141: *** alloc: at 'sRef.c:4174' for 4 bytes, got '0x8350100|s1'
-991866206: 14142: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350120|s1'
-991866206: 14143: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350140|s1'
-991866206: 14144: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e380|s1'
-991866206: 14145: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350160|s1'
-991866206: 14146: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350180|s1'
-991866206: 14147: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83501a0|s1'
-991866206: 14148: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83501c0|s1'
-991866206: 14149: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e400|s1'
-991866206: 14150: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83501e0|s1'
-991866206: 14151: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350200|s1'
-991866206: 14152: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350220|s1'
-991866206: 14153: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350240|s1'
-991866206: 14154: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344d80|s1'
-991866206: 14155: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e480|s1'
-991866206: 14156: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350260|s1'
-991866206: 14157: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350280|s1'
-991866206: 14158: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83502a0|s1'
-991866206: 14159: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83502c0|s1'
-991866206: 14160: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83502e0|s1'
-991866206: 14161: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344dc0|s1'
-991866206: 14162: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350300|s1'
-991866206: 14163: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8350320|s1'
-991866206: 14164: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8350340|s1'
-991866206: 14165: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8350360|s1'
-991866206: 14166: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350380|s1'
-991866206: 14167: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83503a0|s1'
-991866206: 14168: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e500|s1'
-991866206: 14169: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83503c0|s1'
-991866206: 14170: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83503e0|s1'
-991866206: 14171: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350400|s1'
-991866206: 14172: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350420|s1'
-991866206: 14173: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e580|s1'
-991866206: 14174: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350440|s1'
-991866206: 14175: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350460|s1'
-991866206: 14176: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350480|s1'
-991866206: 14177: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83504a0|s1'
-991866206: 14178: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344e00|s1'
-991866206: 14179: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e600|s1'
-991866206: 14180: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83504c0|s1'
-991866206: 14181: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83504e0|s1'
-991866206: 14182: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350500|s1'
-991866206: 14183: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350520|s1'
-991866206: 14184: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8350540|s1'
-991866206: 14185: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344e40|s1'
-991866206: 14186: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350560|s1'
-991866206: 14187: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8350580|s1'
-991866206: 14188: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83505a0|s1'
-991866206: 14189: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83505c0|s1'
-991866206: 14190: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83505e0|s1'
-991866206: 14191: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350600|s1'
-991866206: 14192: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350620|s1'
-991866206: 14193: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350640|s1'
-991866206: 14194: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8350660|s1'
-991866206: 14195: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350680|s1'
-991866206: 14196: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344e80|s1'
-991866206: 14197: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e680|s1'
-991866206: 14198: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83506a0|s1'
-991866206: 14199: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83506c0|s1'
-991866206: 14200: checking heap
-991866206: 14200: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83506e0|s1'
-991866206: 14201: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350700|s1'
-991866206: 14202: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350720|s1'
-991866206: 14203: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350740|s1'
-991866206: 14204: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8350760|s1'
-991866206: 14205: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344ec0|s1'
-991866206: 14206: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8350780|s1'
-991866206: 14207: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83507a0|s1'
-991866206: 14208: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83507c0|s1'
-991866206: 14209: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83507e0|s1'
-991866206: 14210: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350800|s1'
-991866206: 14211: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350820|s1'
-991866206: 14212: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e700|s1'
-991866206: 14213: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8350840|s1'
-991866206: 14214: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e780|s1'
-991866206: 14215: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8350860|s1'
-991866206: 14216: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350880|s1'
-991866206: 14217: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83508a0|s1'
-991866206: 14218: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83508c0|s1'
-991866206: 14219: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83508e0|s1'
-991866206: 14220: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350900|s1'
-991866206: 14221: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350920|s1'
-991866206: 14222: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344f00|s1'
-991866206: 14223: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e800|s1'
-991866206: 14224: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350940|s1'
-991866206: 14225: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350960|s1'
-991866206: 14226: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350980|s1'
-991866206: 14227: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83509a0|s1'
-991866206: 14228: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83509c0|s1'
-991866206: 14229: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83509e0|s1'
-991866206: 14230: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350a00|s1'
-991866206: 14231: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350a20|s1'
-991866206: 14232: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8350a40|s1'
-991866206: 14233: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344f40|s1'
-991866206: 14234: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350a60|s1'
-991866206: 14235: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8350a80|s1'
-991866206: 14236: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8350aa0|s1'
-991866206: 14237: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8350ac0|s1'
-991866206: 14238: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e880|s1'
-991866206: 14239: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350ae0|s1'
-991866206: 14240: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350b00|s1'
-991866206: 14241: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350b20|s1'
-991866206: 14242: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350b40|s1'
-991866206: 14243: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e900|s1'
-991866206: 14244: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8350b60|s1'
-991866206: 14245: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834e980|s1'
-991866206: 14246: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8350b80|s1'
-991866206: 14247: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350ba0|s1'
-991866206: 14248: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350bc0|s1'
-991866206: 14249: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350be0|s1'
-991866206: 14250: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350c00|s1'
-991866206: 14251: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ea00|s1'
-991866206: 14252: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350c20|s1'
-991866206: 14253: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350c40|s1'
-991866206: 14254: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350c60|s1'
-991866206: 14255: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350c80|s1'
-991866206: 14256: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8344f80|s1'
-991866206: 14257: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ea80|s1'
-991866206: 14258: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350ca0|s1'
-991866206: 14259: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350cc0|s1'
-991866206: 14260: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350ce0|s1'
-991866206: 14261: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350d00|s1'
-991866206: 14262: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8350d20|s1'
-991866206: 14263: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8344fc0|s1'
-991866206: 14264: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350d40|s1'
-991866206: 14265: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8350d60|s1'
-991866206: 14266: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8350d80|s1'
-991866206: 14267: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8350da0|s1'
-991866206: 14268: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834eb00|s1'
-991866206: 14269: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350dc0|s1'
-991866206: 14270: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350de0|s1'
-991866206: 14271: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350e00|s1'
-991866206: 14272: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350e20|s1'
-991866206: 14273: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834eb80|s1'
-991866206: 14274: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8350e40|s1'
-991866206: 14275: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ec00|s1'
-991866206: 14276: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8350e60|s1'
-991866206: 14277: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350e80|s1'
-991866206: 14278: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350ea0|s1'
-991866206: 14279: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8350ec0|s1'
-991866206: 14280: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8350ee0|s1'
-991866206: 14281: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ec80|s1'
-991866206: 14282: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8350f00|s1'
-991866206: 14283: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8350f20|s1'
-991866206: 14284: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8350f40|s1'
-991866206: 14285: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350f60|s1'
-991866206: 14286: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352000|s1'
-991866206: 14287: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ed00|s1'
-991866206: 14288: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350f80|s1'
-991866206: 14289: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350fa0|s1'
-991866206: 14290: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8350fc0|s1'
-991866206: 14291: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8350fe0|s1'
-991866206: 14292: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354000|s1'
-991866206: 14293: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352040|s1'
-991866206: 14294: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8354020|s1'
-991866206: 14295: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8354040|s1'
-991866206: 14296: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8354060|s1'
-991866206: 14297: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8354080|s1'
-991866206: 14298: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83540a0|s1'
-991866206: 14299: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83540c0|s1'
-991866206: 14300: checking heap
-991866206: 14300: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83540e0|s1'
-991866206: 14301: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354100|s1'
-991866206: 14302: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8354120|s1'
-991866206: 14303: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354140|s1'
-991866206: 14304: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352080|s1'
-991866206: 14305: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ed80|s1'
-991866206: 14306: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354160|s1'
-991866206: 14307: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354180|s1'
-991866206: 14308: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83541a0|s1'
-991866206: 14309: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83541c0|s1'
-991866206: 14310: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83541e0|s1'
-991866206: 14311: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354200|s1'
-991866206: 14312: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354220|s1'
-991866206: 14313: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83520c0|s1'
-991866206: 14314: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8354240|s1'
-991866206: 14315: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8354260|s1'
-991866206: 14316: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8354280|s1'
-991866206: 14317: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83542a0|s1'
-991866206: 14318: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83542c0|s1'
-991866206: 14319: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83542e0|s1'
-991866206: 14320: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ee00|s1'
-991866206: 14321: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8354300|s1'
-991866206: 14322: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8354320|s1'
-991866206: 14323: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ee80|s1'
-991866206: 14324: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8354340|s1'
-991866206: 14325: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ef00|s1'
-991866206: 14326: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8354360|s1'
-991866206: 14327: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354380|s1'
-991866206: 14328: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83543a0|s1'
-991866206: 14329: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83543c0|s1'
-991866206: 14330: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83543e0|s1'
-991866206: 14331: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x834ef80|s1'
-991866206: 14332: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8354400|s1'
-991866206: 14333: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8354420|s1'
-991866206: 14334: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8354440|s1'
-991866206: 14335: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354460|s1'
-991866206: 14336: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352100|s1'
-991866206: 14337: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356000|s1'
-991866206: 14338: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354480|s1'
-991866206: 14339: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83544a0|s1'
-991866206: 14340: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83544c0|s1'
-991866206: 14341: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83544e0|s1'
-991866206: 14342: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354500|s1'
-991866206: 14343: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354520|s1'
-991866206: 14344: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354540|s1'
-991866206: 14345: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352140|s1'
-991866206: 14346: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8354560|s1'
-991866206: 14347: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8354580|s1'
-991866206: 14348: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83545a0|s1'
-991866206: 14349: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83545c0|s1'
-991866206: 14350: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83545e0|s1'
-991866206: 14351: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354600|s1'
-991866206: 14352: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354620|s1'
-991866206: 14353: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354640|s1'
-991866206: 14354: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356080|s1'
-991866206: 14355: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8354660|s1'
-991866206: 14356: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356100|s1'
-991866206: 14357: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8354680|s1'
-991866206: 14358: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83546a0|s1'
-991866206: 14359: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83546c0|s1'
-991866206: 14360: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356180|s1'
-991866206: 14361: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83546e0|s1'
-991866206: 14362: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356200|s1'
-991866206: 14363: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8354700|s1'
-991866206: 14364: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354720|s1'
-991866206: 14365: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354740|s1'
-991866206: 14366: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8354760|s1'
-991866206: 14367: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354780|s1'
-991866206: 14368: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352180|s1'
-991866206: 14369: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356280|s1'
-991866206: 14370: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83547a0|s1'
-991866206: 14371: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83547c0|s1'
-991866206: 14372: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83547e0|s1'
-991866206: 14373: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354800|s1'
-991866206: 14374: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354820|s1'
-991866206: 14375: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83521c0|s1'
-991866206: 14376: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8354840|s1'
-991866206: 14377: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8354860|s1'
-991866206: 14378: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8354880|s1'
-991866206: 14379: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83548a0|s1'
-991866206: 14380: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83548c0|s1'
-991866206: 14381: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83548e0|s1'
-991866206: 14382: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354900|s1'
-991866206: 14383: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354920|s1'
-991866206: 14384: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356300|s1'
-991866206: 14385: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8354940|s1'
-991866206: 14386: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356380|s1'
-991866206: 14387: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8354960|s1'
-991866206: 14388: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354980|s1'
-991866206: 14389: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83549a0|s1'
-991866206: 14390: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356400|s1'
-991866206: 14391: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83549c0|s1'
-991866206: 14392: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356480|s1'
-991866206: 14393: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83549e0|s1'
-991866206: 14394: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354a00|s1'
-991866206: 14395: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354a20|s1'
-991866206: 14396: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8354a40|s1'
-991866206: 14397: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354a60|s1'
-991866206: 14398: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352200|s1'
-991866206: 14399: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356500|s1'
-991866206: 14400: checking heap
-991866206: 14400: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354a80|s1'
-991866206: 14401: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354aa0|s1'
-991866206: 14402: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354ac0|s1'
-991866206: 14403: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354ae0|s1'
-991866206: 14404: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354b00|s1'
-991866206: 14405: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352240|s1'
-991866206: 14406: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8354b20|s1'
-991866206: 14407: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8354b40|s1'
-991866206: 14408: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8354b60|s1'
-991866206: 14409: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8354b80|s1'
-991866206: 14410: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354ba0|s1'
-991866206: 14411: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354bc0|s1'
-991866206: 14412: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354be0|s1'
-991866206: 14413: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354c00|s1'
-991866206: 14414: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356580|s1'
-991866206: 14415: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8354c20|s1'
-991866206: 14416: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356600|s1'
-991866206: 14417: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8354c40|s1'
-991866206: 14418: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354c60|s1'
-991866206: 14419: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354c80|s1'
-991866206: 14420: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8354ca0|s1'
-991866206: 14421: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354cc0|s1'
-991866206: 14422: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352280|s1'
-991866206: 14423: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356680|s1'
-991866206: 14424: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354ce0|s1'
-991866206: 14425: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354d00|s1'
-991866206: 14426: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354d20|s1'
-991866206: 14427: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354d40|s1'
-991866206: 14428: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354d60|s1'
-991866206: 14429: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83522c0|s1'
-991866206: 14430: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8354d80|s1'
-991866206: 14431: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8354da0|s1'
-991866206: 14432: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8354dc0|s1'
-991866206: 14433: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8354de0|s1'
-991866206: 14434: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354e00|s1'
-991866206: 14435: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354e20|s1'
-991866206: 14436: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354e40|s1'
-991866206: 14437: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354e60|s1'
-991866206: 14438: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356700|s1'
-991866206: 14439: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8354e80|s1'
-991866206: 14440: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356780|s1'
-991866206: 14441: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8354ea0|s1'
-991866206: 14442: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8354ec0|s1'
-991866206: 14443: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8354ee0|s1'
-991866206: 14444: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8354f00|s1'
-991866206: 14445: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354f20|s1'
-991866206: 14446: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352300|s1'
-991866206: 14447: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356800|s1'
-991866206: 14448: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354f40|s1'
-991866206: 14449: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354f60|s1'
-991866206: 14450: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8354f80|s1'
-991866206: 14451: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8354fa0|s1'
-991866206: 14452: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8354fc0|s1'
-991866206: 14453: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352340|s1'
-991866206: 14454: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8354fe0|s1'
-991866206: 14455: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8358000|s1'
-991866206: 14456: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8358020|s1'
-991866206: 14457: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8358040|s1'
-991866206: 14458: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356880|s1'
-991866206: 14459: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8358060|s1'
-991866206: 14460: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358080|s1'
-991866206: 14461: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83580a0|s1'
-991866206: 14462: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83580c0|s1'
-991866206: 14463: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83580e0|s1'
-991866206: 14464: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358100|s1'
-991866206: 14465: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356900|s1'
-991866206: 14466: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8358120|s1'
-991866206: 14467: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358140|s1'
-991866206: 14468: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356980|s1'
-991866206: 14469: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8358160|s1'
-991866206: 14470: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8358180|s1'
-991866206: 14471: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83581a0|s1'
-991866206: 14472: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352380|s1'
-991866206: 14473: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356a00|s1'
-991866206: 14474: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83581c0|s1'
-991866206: 14475: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83581e0|s1'
-991866206: 14476: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358200|s1'
-991866206: 14477: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358220|s1'
-991866206: 14478: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8358240|s1'
-991866206: 14479: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83523c0|s1'
-991866206: 14480: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8358260|s1'
-991866206: 14481: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8358280|s1'
-991866206: 14482: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356a80|s1'
-991866206: 14483: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83582a0|s1'
-991866206: 14484: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83582c0|s1'
-991866206: 14485: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83582e0|s1'
-991866206: 14486: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358300|s1'
-991866206: 14487: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358320|s1'
-991866206: 14488: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358340|s1'
-991866206: 14489: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356b00|s1'
-991866206: 14490: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8358360|s1'
-991866206: 14491: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358380|s1'
-991866206: 14492: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356b80|s1'
-991866206: 14493: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83583a0|s1'
-991866206: 14494: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83583c0|s1'
-991866206: 14495: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83583e0|s1'
-991866206: 14496: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352400|s1'
-991866206: 14497: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356c00|s1'
-991866206: 14498: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358400|s1'
-991866206: 14499: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358420|s1'
-991866206: 14500: checking heap
-991866207: 14500: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358440|s1'
-991866207: 14501: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358460|s1'
-991866207: 14502: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8358480|s1'
-991866207: 14503: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352440|s1'
-991866207: 14504: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83584a0|s1'
-991866207: 14505: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83584c0|s1'
-991866207: 14506: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83584e0|s1'
-991866207: 14507: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8358500|s1'
-991866207: 14508: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356c80|s1'
-991866207: 14509: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8358520|s1'
-991866207: 14510: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356d00|s1'
-991866207: 14511: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8358540|s1'
-991866207: 14512: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358560|s1'
-991866207: 14513: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358580|s1'
-991866207: 14514: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83585a0|s1'
-991866207: 14515: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83585c0|s1'
-991866207: 14516: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83585e0|s1'
-991866207: 14517: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358600|s1'
-991866207: 14518: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352480|s1'
-991866207: 14519: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356d80|s1'
-991866207: 14520: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358620|s1'
-991866207: 14521: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358640|s1'
-991866207: 14522: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358660|s1'
-991866207: 14523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358680|s1'
-991866207: 14524: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83586a0|s1'
-991866207: 14525: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83524c0|s1'
-991866207: 14526: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83586c0|s1'
-991866207: 14527: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83586e0|s1'
-991866207: 14528: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8358700|s1'
-991866207: 14529: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8358720|s1'
-991866207: 14530: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8358740|s1'
-991866207: 14531: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358760|s1'
-991866207: 14532: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352500|s1'
-991866207: 14533: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356e00|s1'
-991866207: 14534: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358780|s1'
-991866207: 14535: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83587a0|s1'
-991866207: 14536: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83587c0|s1'
-991866207: 14537: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83587e0|s1'
-991866207: 14538: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8358800|s1'
-991866207: 14539: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352540|s1'
-991866207: 14540: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8358820|s1'
-991866207: 14541: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8358840|s1'
-991866207: 14542: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8358860|s1'
-991866207: 14543: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8358880|s1'
-991866207: 14544: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83588a0|s1'
-991866207: 14545: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83588c0|s1'
-991866207: 14546: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356e80|s1'
-991866207: 14547: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83588e0|s1'
-991866207: 14548: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358900|s1'
-991866207: 14549: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358920|s1'
-991866207: 14550: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358940|s1'
-991866207: 14551: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356f00|s1'
-991866207: 14552: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8358960|s1'
-991866207: 14553: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8356f80|s1'
-991866207: 14554: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8358980|s1'
-991866207: 14555: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83589a0|s1'
-991866207: 14556: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83589c0|s1'
-991866207: 14557: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a000|s1'
-991866207: 14558: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83589e0|s1'
-991866207: 14559: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a080|s1'
-991866207: 14560: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8358a00|s1'
-991866207: 14561: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358a20|s1'
-991866207: 14562: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8358a40|s1'
-991866207: 14563: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358a60|s1'
-991866207: 14564: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352580|s1'
-991866207: 14565: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a100|s1'
-991866207: 14566: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358a80|s1'
-991866207: 14567: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358aa0|s1'
-991866207: 14568: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358ac0|s1'
-991866207: 14569: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358ae0|s1'
-991866207: 14570: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8358b00|s1'
-991866207: 14571: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83525c0|s1'
-991866207: 14572: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8358b20|s1'
-991866207: 14573: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8358b40|s1'
-991866207: 14574: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8358b60|s1'
-991866207: 14575: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8358b80|s1'
-991866207: 14576: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a180|s1'
-991866207: 14577: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8358ba0|s1'
-991866207: 14578: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358bc0|s1'
-991866207: 14579: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358be0|s1'
-991866207: 14580: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358c00|s1'
-991866207: 14581: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358c20|s1'
-991866207: 14582: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358c40|s1'
-991866207: 14583: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a200|s1'
-991866207: 14584: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8358c60|s1'
-991866207: 14585: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a280|s1'
-991866207: 14586: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8358c80|s1'
-991866207: 14587: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8358ca0|s1'
-991866207: 14588: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a300|s1'
-991866207: 14589: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8358cc0|s1'
-991866207: 14590: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8358ce0|s1'
-991866207: 14591: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358d00|s1'
-991866207: 14592: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352600|s1'
-991866207: 14593: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a380|s1'
-991866207: 14594: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358d20|s1'
-991866207: 14595: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358d40|s1'
-991866207: 14596: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358d60|s1'
-991866207: 14597: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358d80|s1'
-991866207: 14598: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8358da0|s1'
-991866207: 14599: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352640|s1'
-991866207: 14600: checking heap
-991866207: 14600: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8358dc0|s1'
-991866207: 14601: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8358de0|s1'
-991866207: 14602: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8358e00|s1'
-991866207: 14603: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8358e20|s1'
-991866207: 14604: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a400|s1'
-991866207: 14605: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8358e40|s1'
-991866207: 14606: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a480|s1'
-991866207: 14607: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8358e60|s1'
-991866207: 14608: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358e80|s1'
-991866207: 14609: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358ea0|s1'
-991866207: 14610: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8358ec0|s1'
-991866207: 14611: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8358ee0|s1'
-991866207: 14612: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a500|s1'
-991866207: 14613: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8358f00|s1'
-991866207: 14614: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8358f20|s1'
-991866207: 14615: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358f40|s1'
-991866207: 14616: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352680|s1'
-991866207: 14617: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a580|s1'
-991866207: 14618: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358f60|s1'
-991866207: 14619: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358f80|s1'
-991866207: 14620: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8358fa0|s1'
-991866207: 14621: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8358fc0|s1'
-991866207: 14622: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8358fe0|s1'
-991866207: 14623: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83526c0|s1'
-991866207: 14624: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x835c000|s1'
-991866207: 14625: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x835c020|s1'
-991866207: 14626: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x835c040|s1'
-991866207: 14627: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x835c060|s1'
-991866207: 14628: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c080|s1'
-991866207: 14629: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c0a0|s1'
-991866207: 14630: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a600|s1'
-991866207: 14631: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835c0c0|s1'
-991866207: 14632: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835c0e0|s1'
-991866207: 14633: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c100|s1'
-991866207: 14634: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c120|s1'
-991866207: 14635: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a680|s1'
-991866207: 14636: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x835c140|s1'
-991866207: 14637: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a700|s1'
-991866207: 14638: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835c160|s1'
-991866207: 14639: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c180|s1'
-991866207: 14640: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c1a0|s1'
-991866207: 14641: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a780|s1'
-991866207: 14642: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835c1c0|s1'
-991866207: 14643: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835c1e0|s1'
-991866207: 14644: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835c200|s1'
-991866207: 14645: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c220|s1'
-991866207: 14646: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352700|s1'
-991866207: 14647: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a800|s1'
-991866207: 14648: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835c240|s1'
-991866207: 14649: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c260|s1'
-991866207: 14650: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835c280|s1'
-991866207: 14651: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c2a0|s1'
-991866207: 14652: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x835c2c0|s1'
-991866207: 14653: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352740|s1'
-991866207: 14654: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835c2e0|s1'
-991866207: 14655: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x835c300|s1'
-991866207: 14656: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x835c320|s1'
-991866207: 14657: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x835c340|s1'
-991866207: 14658: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c360|s1'
-991866207: 14659: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c380|s1'
-991866207: 14660: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a880|s1'
-991866207: 14661: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835c3a0|s1'
-991866207: 14662: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835c3c0|s1'
-991866207: 14663: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c3e0|s1'
-991866207: 14664: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c400|s1'
-991866207: 14665: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a900|s1'
-991866207: 14666: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x835c420|s1'
-991866207: 14667: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835a980|s1'
-991866207: 14668: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835c440|s1'
-991866207: 14669: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c460|s1'
-991866207: 14670: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c480|s1'
-991866207: 14671: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835aa00|s1'
-991866207: 14672: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x835c4a0|s1'
-991866207: 14673: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835aa80|s1'
-991866207: 14674: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835c4c0|s1'
-991866207: 14675: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c4e0|s1'
-991866207: 14676: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c500|s1'
-991866207: 14677: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ab00|s1'
-991866207: 14678: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835c520|s1'
-991866207: 14679: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835c540|s1'
-991866207: 14680: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835c560|s1'
-991866207: 14681: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c580|s1'
-991866207: 14682: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352780|s1'
-991866207: 14683: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ab80|s1'
-991866207: 14684: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835c5a0|s1'
-991866207: 14685: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c5c0|s1'
-991866207: 14686: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835c5e0|s1'
-991866207: 14687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c600|s1'
-991866207: 14688: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x835c620|s1'
-991866207: 14689: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83527c0|s1'
-991866207: 14690: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835c640|s1'
-991866207: 14691: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x835c660|s1'
-991866207: 14692: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x835c680|s1'
-991866207: 14693: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x835c6a0|s1'
-991866207: 14694: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c6c0|s1'
-991866207: 14695: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c6e0|s1'
-991866207: 14696: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ac00|s1'
-991866207: 14697: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835c700|s1'
-991866207: 14698: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835c720|s1'
-991866207: 14699: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c740|s1'
-991866207: 14700: checking heap
-991866207: 14700: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c760|s1'
-991866207: 14701: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ac80|s1'
-991866207: 14702: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x835c780|s1'
-991866207: 14703: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ad00|s1'
-991866207: 14704: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835c7a0|s1'
-991866207: 14705: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c7c0|s1'
-991866207: 14706: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c7e0|s1'
-991866207: 14707: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ad80|s1'
-991866207: 14708: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835c800|s1'
-991866207: 14709: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835c820|s1'
-991866207: 14710: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835c840|s1'
-991866207: 14711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c860|s1'
-991866207: 14712: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352800|s1'
-991866207: 14713: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ae00|s1'
-991866207: 14714: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835c880|s1'
-991866207: 14715: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c8a0|s1'
-991866207: 14716: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835c8c0|s1'
-991866207: 14717: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835c8e0|s1'
-991866207: 14718: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x835c900|s1'
-991866207: 14719: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352840|s1'
-991866207: 14720: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835c920|s1'
-991866207: 14721: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x835c940|s1'
-991866207: 14722: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x835c960|s1'
-991866207: 14723: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x835c980|s1'
-991866207: 14724: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c9a0|s1'
-991866207: 14725: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835c9c0|s1'
-991866207: 14726: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835c9e0|s1'
-991866207: 14727: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835ca00|s1'
-991866207: 14728: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ae80|s1'
-991866207: 14729: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x835ca20|s1'
-991866207: 14730: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835af00|s1'
-991866207: 14731: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835ca40|s1'
-991866207: 14732: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835ca60|s1'
-991866207: 14733: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835ca80|s1'
-991866207: 14734: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835caa0|s1'
-991866207: 14735: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cac0|s1'
-991866207: 14736: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352880|s1'
-991866207: 14737: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835af80|s1'
-991866207: 14738: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835cae0|s1'
-991866207: 14739: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cb00|s1'
-991866207: 14740: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835cb20|s1'
-991866207: 14741: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cb40|s1'
-991866207: 14742: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x835cb60|s1'
-991866207: 14743: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83528c0|s1'
-991866207: 14744: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x835cb80|s1'
-991866207: 14745: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x835cba0|s1'
-991866207: 14746: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x835cbc0|s1'
-991866207: 14747: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x835cbe0|s1'
-991866207: 14748: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835cc00|s1'
-991866207: 14749: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835cc20|s1'
-991866207: 14750: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835cc40|s1'
-991866207: 14751: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835cc60|s1'
-991866207: 14752: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e000|s1'
-991866207: 14753: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x835cc80|s1'
-991866207: 14754: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e080|s1'
-991866207: 14755: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835cca0|s1'
-991866207: 14756: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835ccc0|s1'
-991866207: 14757: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835cce0|s1'
-991866207: 14758: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x835cd00|s1'
-991866207: 14759: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cd20|s1'
-991866207: 14760: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352900|s1'
-991866207: 14761: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e100|s1'
-991866207: 14762: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835cd40|s1'
-991866207: 14763: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cd60|s1'
-991866207: 14764: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835cd80|s1'
-991866207: 14765: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cda0|s1'
-991866207: 14766: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x835cdc0|s1'
-991866207: 14767: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352940|s1'
-991866207: 14768: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x835cde0|s1'
-991866207: 14769: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x835ce00|s1'
-991866207: 14770: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x835ce20|s1'
-991866207: 14771: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x835ce40|s1'
-991866207: 14772: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e180|s1'
-991866207: 14773: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835ce60|s1'
-991866207: 14774: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835ce80|s1'
-991866207: 14775: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835cea0|s1'
-991866207: 14776: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835cec0|s1'
-991866207: 14777: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x835cee0|s1'
-991866207: 14778: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x835cf00|s1'
-991866207: 14779: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e200|s1'
-991866207: 14780: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x835cf20|s1'
-991866207: 14781: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x835cf40|s1'
-991866207: 14782: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e280|s1'
-991866207: 14783: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x835cf60|s1'
-991866207: 14784: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x835cf80|s1'
-991866207: 14785: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cfa0|s1'
-991866207: 14786: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352980|s1'
-991866207: 14787: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e300|s1'
-991866207: 14788: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x835cfc0|s1'
-991866207: 14789: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x835cfe0|s1'
-991866207: 14790: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360000|s1'
-991866207: 14791: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360020|s1'
-991866207: 14792: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8360040|s1'
-991866207: 14793: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83529c0|s1'
-991866207: 14794: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8360060|s1'
-991866207: 14795: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8360080|s1'
-991866207: 14796: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83600a0|s1'
-991866207: 14797: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83600c0|s1'
-991866207: 14798: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e380|s1'
-991866207: 14799: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83600e0|s1'
-991866207: 14800: checking heap
-991866207: 14800: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360100|s1'
-991866207: 14801: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360120|s1'
-991866207: 14802: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360140|s1'
-991866207: 14803: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e400|s1'
-991866207: 14804: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360160|s1'
-991866207: 14805: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360180|s1'
-991866207: 14806: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83601a0|s1'
-991866207: 14807: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83601c0|s1'
-991866207: 14808: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e480|s1'
-991866207: 14809: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83601e0|s1'
-991866207: 14810: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e500|s1'
-991866207: 14811: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8360200|s1'
-991866207: 14812: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360220|s1'
-991866207: 14813: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360240|s1'
-991866207: 14814: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e580|s1'
-991866207: 14815: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360260|s1'
-991866207: 14816: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360280|s1'
-991866207: 14817: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e600|s1'
-991866207: 14818: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83602a0|s1'
-991866207: 14819: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e680|s1'
-991866207: 14820: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83602c0|s1'
-991866207: 14821: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83602e0|s1'
-991866207: 14822: *** alloc: at 'ra=0x80e6889' for 19 bytes, got '0x8360300|s1'
-991866207: 14823: *** alloc: at 'ra=0x80e6889' for 74 bytes, got '0x835e700|s1'
-991866207: 14824: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360320|s1'
-991866207: 14825: *** alloc: at 'ra=0x80e6889' for 74 bytes, got '0x835e780|s1'
-991866207: 14826: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x8352a00|s1'
-991866207: 14827: *** alloc: at 'multiVal.c:39' for 12 bytes, got '0x8360340|s1'
-991866207: 14828: *** alloc: at 'exprData.i:489' for 4 bytes, got '0x8360360|s1'
-991866207: 14829: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e800|s1'
-991866207: 14830: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360380|s1'
-991866207: 14831: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83603a0|s1'
-991866207: 14832: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83603c0|s1'
-991866207: 14833: *** alloc: at 'warnClause.c:35' for 16 bytes, got '0x83603e0|s1'
-991866207: 14834: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8360400|s1'
-991866207: 14835: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360420|s1'
-991866207: 14836: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352a40|s1'
-991866207: 14837: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e880|s1'
-991866207: 14838: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360440|s1'
-991866207: 14839: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360460|s1'
-991866207: 14840: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360480|s1'
-991866207: 14841: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83604a0|s1'
-991866207: 14842: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83604c0|s1'
-991866207: 14843: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83604e0|s1'
-991866207: 14844: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8360500|s1'
-991866207: 14845: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352a80|s1'
-991866207: 14846: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8360520|s1'
-991866207: 14847: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8360540|s1'
-991866207: 14848: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8360560|s1'
-991866207: 14849: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8360580|s1'
-991866207: 14850: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83605a0|s1'
-991866207: 14851: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83605c0|s1'
-991866207: 14852: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83605e0|s1'
-991866207: 14853: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360600|s1'
-991866207: 14854: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e900|s1'
-991866207: 14855: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8360620|s1'
-991866207: 14856: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835e980|s1'
-991866207: 14857: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8360640|s1'
-991866207: 14858: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360660|s1'
-991866207: 14859: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360680|s1'
-991866207: 14860: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83606a0|s1'
-991866207: 14861: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83606c0|s1'
-991866207: 14862: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352ac0|s1'
-991866207: 14863: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ea00|s1'
-991866207: 14864: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83606e0|s1'
-991866207: 14865: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360700|s1'
-991866207: 14866: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360720|s1'
-991866207: 14867: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360740|s1'
-991866207: 14868: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8360760|s1'
-991866207: 14869: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352b00|s1'
-991866207: 14870: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8360780|s1'
-991866207: 14871: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83607a0|s1'
-991866207: 14872: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83607c0|s1'
-991866207: 14873: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83607e0|s1'
-991866207: 14874: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ea80|s1'
-991866207: 14875: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360800|s1'
-991866207: 14876: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360820|s1'
-991866207: 14877: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360840|s1'
-991866207: 14878: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360860|s1'
-991866207: 14879: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360880|s1'
-991866207: 14880: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83608a0|s1'
-991866207: 14881: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835eb00|s1'
-991866207: 14882: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83608c0|s1'
-991866207: 14883: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83608e0|s1'
-991866207: 14884: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835eb80|s1'
-991866207: 14885: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8360900|s1'
-991866207: 14886: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8360920|s1'
-991866207: 14887: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360940|s1'
-991866207: 14888: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352b40|s1'
-991866207: 14889: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ec00|s1'
-991866207: 14890: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360960|s1'
-991866207: 14891: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360980|s1'
-991866207: 14892: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83609a0|s1'
-991866207: 14893: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83609c0|s1'
-991866207: 14894: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83609e0|s1'
-991866207: 14895: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352b80|s1'
-991866207: 14896: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8360a00|s1'
-991866207: 14897: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8360a20|s1'
-991866207: 14898: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8360a40|s1'
-991866207: 14899: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8360a60|s1'
-991866207: 14900: checking heap
-991866207: 14900: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ec80|s1'
-991866207: 14901: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360a80|s1'
-991866207: 14902: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360aa0|s1'
-991866207: 14903: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360ac0|s1'
-991866207: 14904: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360ae0|s1'
-991866207: 14905: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360b00|s1'
-991866207: 14906: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360b20|s1'
-991866207: 14907: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ed00|s1'
-991866207: 14908: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360b40|s1'
-991866207: 14909: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360b60|s1'
-991866207: 14910: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ed80|s1'
-991866207: 14911: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8360b80|s1'
-991866207: 14912: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8360ba0|s1'
-991866207: 14913: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360bc0|s1'
-991866207: 14914: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352bc0|s1'
-991866207: 14915: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ee00|s1'
-991866207: 14916: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360be0|s1'
-991866207: 14917: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360c00|s1'
-991866207: 14918: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360c20|s1'
-991866207: 14919: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360c40|s1'
-991866207: 14920: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8360c60|s1'
-991866207: 14921: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352c00|s1'
-991866207: 14922: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8360c80|s1'
-991866207: 14923: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8360ca0|s1'
-991866207: 14924: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8360cc0|s1'
-991866207: 14925: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8360ce0|s1'
-991866207: 14926: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360d00|s1'
-991866207: 14927: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360d20|s1'
-991866207: 14928: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ee80|s1'
-991866207: 14929: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360d40|s1'
-991866207: 14930: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360d60|s1'
-991866207: 14931: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360d80|s1'
-991866207: 14932: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360da0|s1'
-991866207: 14933: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ef00|s1'
-991866207: 14934: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8360dc0|s1'
-991866207: 14935: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x835ef80|s1'
-991866207: 14936: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8360de0|s1'
-991866207: 14937: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360e00|s1'
-991866207: 14938: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8360e20|s1'
-991866207: 14939: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362000|s1'
-991866207: 14940: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8360e40|s1'
-991866207: 14941: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8360e60|s1'
-991866207: 14942: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8360e80|s1'
-991866207: 14943: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360ea0|s1'
-991866207: 14944: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352c40|s1'
-991866207: 14945: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362080|s1'
-991866207: 14946: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360ec0|s1'
-991866207: 14947: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360ee0|s1'
-991866207: 14948: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8360f00|s1'
-991866207: 14949: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8360f20|s1'
-991866207: 14950: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8360f40|s1'
-991866207: 14951: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352c80|s1'
-991866207: 14952: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8360f60|s1'
-991866207: 14953: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8360f80|s1'
-991866207: 14954: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8360fa0|s1'
-991866207: 14955: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8360fc0|s1'
-991866207: 14956: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8360fe0|s1'
-991866207: 14957: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364000|s1'
-991866207: 14958: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362100|s1'
-991866207: 14959: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364020|s1'
-991866207: 14960: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364040|s1'
-991866207: 14961: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364060|s1'
-991866207: 14962: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364080|s1'
-991866207: 14963: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362180|s1'
-991866207: 14964: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83640a0|s1'
-991866207: 14965: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362200|s1'
-991866207: 14966: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83640c0|s1'
-991866207: 14967: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83640e0|s1'
-991866207: 14968: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364100|s1'
-991866207: 14969: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362280|s1'
-991866207: 14970: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8364120|s1'
-991866207: 14971: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362300|s1'
-991866207: 14972: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8364140|s1'
-991866207: 14973: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364160|s1'
-991866207: 14974: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364180|s1'
-991866207: 14975: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362380|s1'
-991866207: 14976: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83641a0|s1'
-991866207: 14977: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83641c0|s1'
-991866207: 14978: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83641e0|s1'
-991866207: 14979: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364200|s1'
-991866207: 14980: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352cc0|s1'
-991866207: 14981: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362400|s1'
-991866207: 14982: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364220|s1'
-991866207: 14983: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364240|s1'
-991866207: 14984: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364260|s1'
-991866207: 14985: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364280|s1'
-991866207: 14986: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83642a0|s1'
-991866207: 14987: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352d00|s1'
-991866207: 14988: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83642c0|s1'
-991866207: 14989: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83642e0|s1'
-991866207: 14990: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8364300|s1'
-991866207: 14991: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8364320|s1'
-991866207: 14992: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364340|s1'
-991866207: 14993: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364360|s1'
-991866207: 14994: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362480|s1'
-991866207: 14995: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364380|s1'
-991866207: 14996: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83643a0|s1'
-991866207: 14997: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83643c0|s1'
-991866207: 14998: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83643e0|s1'
-991866207: 14999: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362500|s1'
-991866207: 15000: checking heap
-991866207: 15000: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8364400|s1'
-991866207: 15001: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362580|s1'
-991866207: 15002: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8364420|s1'
-991866207: 15003: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364440|s1'
-991866207: 15004: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364460|s1'
-991866207: 15005: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362600|s1'
-991866207: 15006: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364480|s1'
-991866207: 15007: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83644a0|s1'
-991866207: 15008: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83644c0|s1'
-991866207: 15009: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83644e0|s1'
-991866207: 15010: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352d40|s1'
-991866207: 15011: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362680|s1'
-991866207: 15012: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364500|s1'
-991866207: 15013: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364520|s1'
-991866207: 15014: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364540|s1'
-991866207: 15015: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364560|s1'
-991866207: 15016: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8364580|s1'
-991866207: 15017: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352d80|s1'
-991866207: 15018: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83645a0|s1'
-991866207: 15019: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83645c0|s1'
-991866207: 15020: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83645e0|s1'
-991866207: 15021: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8364600|s1'
-991866207: 15022: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362700|s1'
-991866207: 15023: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364620|s1'
-991866207: 15024: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364640|s1'
-991866207: 15025: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364660|s1'
-991866207: 15026: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364680|s1'
-991866207: 15027: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362780|s1'
-991866207: 15028: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83646a0|s1'
-991866207: 15029: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362800|s1'
-991866207: 15030: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83646c0|s1'
-991866207: 15031: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83646e0|s1'
-991866207: 15032: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364700|s1'
-991866207: 15033: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364720|s1'
-991866207: 15034: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364740|s1'
-991866207: 15035: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362880|s1'
-991866207: 15036: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364760|s1'
-991866207: 15037: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364780|s1'
-991866207: 15038: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83647a0|s1'
-991866207: 15039: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83647c0|s1'
-991866207: 15040: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352dc0|s1'
-991866207: 15041: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362900|s1'
-991866207: 15042: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83647e0|s1'
-991866207: 15043: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364800|s1'
-991866207: 15044: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364820|s1'
-991866207: 15045: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364840|s1'
-991866207: 15046: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8364860|s1'
-991866207: 15047: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352e00|s1'
-991866207: 15048: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8364880|s1'
-991866207: 15049: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83648a0|s1'
-991866207: 15050: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83648c0|s1'
-991866207: 15051: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83648e0|s1'
-991866207: 15052: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364900|s1'
-991866207: 15053: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364920|s1'
-991866207: 15054: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362980|s1'
-991866207: 15055: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364940|s1'
-991866207: 15056: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364960|s1'
-991866207: 15057: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364980|s1'
-991866207: 15058: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83649a0|s1'
-991866207: 15059: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362a00|s1'
-991866207: 15060: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83649c0|s1'
-991866207: 15061: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362a80|s1'
-991866207: 15062: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83649e0|s1'
-991866207: 15063: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364a00|s1'
-991866207: 15064: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364a20|s1'
-991866207: 15065: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362b00|s1'
-991866207: 15066: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364a40|s1'
-991866207: 15067: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364a60|s1'
-991866207: 15068: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8364a80|s1'
-991866207: 15069: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364aa0|s1'
-991866207: 15070: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352e40|s1'
-991866207: 15071: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362b80|s1'
-991866207: 15072: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364ac0|s1'
-991866207: 15073: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364ae0|s1'
-991866207: 15074: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364b00|s1'
-991866207: 15075: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364b20|s1'
-991866207: 15076: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8364b40|s1'
-991866207: 15077: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352e80|s1'
-991866207: 15078: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8364b60|s1'
-991866207: 15079: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8364b80|s1'
-991866207: 15080: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8364ba0|s1'
-991866207: 15081: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8364bc0|s1'
-991866207: 15082: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364be0|s1'
-991866207: 15083: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364c00|s1'
-991866207: 15084: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362c00|s1'
-991866207: 15085: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364c20|s1'
-991866207: 15086: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364c40|s1'
-991866207: 15087: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364c60|s1'
-991866207: 15088: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364c80|s1'
-991866207: 15089: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362c80|s1'
-991866207: 15090: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8364ca0|s1'
-991866207: 15091: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362d00|s1'
-991866207: 15092: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8364cc0|s1'
-991866207: 15093: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364ce0|s1'
-991866207: 15094: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364d00|s1'
-991866207: 15095: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362d80|s1'
-991866207: 15096: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364d20|s1'
-991866207: 15097: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364d40|s1'
-991866207: 15098: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8364d60|s1'
-991866207: 15099: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364d80|s1'
-991866207: 15100: checking heap
-991866207: 15100: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352ec0|s1'
-991866207: 15101: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362e00|s1'
-991866207: 15102: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364da0|s1'
-991866207: 15103: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364dc0|s1'
-991866207: 15104: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364de0|s1'
-991866207: 15105: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364e00|s1'
-991866207: 15106: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8364e20|s1'
-991866207: 15107: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352f00|s1'
-991866207: 15108: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8364e40|s1'
-991866207: 15109: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8364e60|s1'
-991866207: 15110: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362e80|s1'
-991866207: 15111: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364e80|s1'
-991866207: 15112: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364ea0|s1'
-991866207: 15113: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364ec0|s1'
-991866207: 15114: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364ee0|s1'
-991866207: 15115: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362f00|s1'
-991866207: 15116: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8364f00|s1'
-991866207: 15117: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8364f20|s1'
-991866207: 15118: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8364f40|s1'
-991866207: 15119: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8364f60|s1'
-991866207: 15120: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8364f80|s1'
-991866207: 15121: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364fa0|s1'
-991866207: 15122: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352f40|s1'
-991866207: 15123: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8362f80|s1'
-991866207: 15124: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8364fc0|s1'
-991866207: 15125: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8364fe0|s1'
-991866207: 15126: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366000|s1'
-991866207: 15127: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366020|s1'
-991866207: 15128: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366040|s1'
-991866207: 15129: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8352f80|s1'
-991866207: 15130: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8366060|s1'
-991866207: 15131: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8366080|s1'
-991866207: 15132: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83660a0|s1'
-991866207: 15133: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83660c0|s1'
-991866207: 15134: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368000|s1'
-991866207: 15135: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83660e0|s1'
-991866207: 15136: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368080|s1'
-991866207: 15137: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8366100|s1'
-991866207: 15138: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366120|s1'
-991866207: 15139: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366140|s1'
-991866207: 15140: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366160|s1'
-991866207: 15141: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366180|s1'
-991866207: 15142: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83661a0|s1'
-991866207: 15143: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83661c0|s1'
-991866207: 15144: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8352fc0|s1'
-991866207: 15145: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368100|s1'
-991866207: 15146: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83661e0|s1'
-991866207: 15147: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366200|s1'
-991866207: 15148: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366220|s1'
-991866207: 15149: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366240|s1'
-991866207: 15150: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366260|s1'
-991866207: 15151: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369000|s1'
-991866207: 15152: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8366280|s1'
-991866207: 15153: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83662a0|s1'
-991866207: 15154: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83662c0|s1'
-991866207: 15155: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83662e0|s1'
-991866207: 15156: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368180|s1'
-991866207: 15157: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8366300|s1'
-991866207: 15158: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368200|s1'
-991866207: 15159: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8366320|s1'
-991866207: 15160: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366340|s1'
-991866207: 15161: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366360|s1'
-991866207: 15162: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366380|s1'
-991866207: 15163: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83663a0|s1'
-991866207: 15164: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83663c0|s1'
-991866207: 15165: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83663e0|s1'
-991866207: 15166: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369040|s1'
-991866207: 15167: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368280|s1'
-991866207: 15168: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366400|s1'
-991866207: 15169: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366420|s1'
-991866207: 15170: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366440|s1'
-991866207: 15171: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366460|s1'
-991866207: 15172: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366480|s1'
-991866207: 15173: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369080|s1'
-991866207: 15174: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83664a0|s1'
-991866207: 15175: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83664c0|s1'
-991866207: 15176: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83664e0|s1'
-991866207: 15177: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8366500|s1'
-991866207: 15178: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368300|s1'
-991866207: 15179: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8366520|s1'
-991866207: 15180: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8366540|s1'
-991866207: 15181: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366560|s1'
-991866207: 15182: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366580|s1'
-991866207: 15183: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368380|s1'
-991866207: 15184: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83665a0|s1'
-991866207: 15185: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83665c0|s1'
-991866207: 15186: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83665e0|s1'
-991866207: 15187: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366600|s1'
-991866207: 15188: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366620|s1'
-991866207: 15189: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366640|s1'
-991866207: 15190: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83690c0|s1'
-991866207: 15191: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368400|s1'
-991866207: 15192: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366660|s1'
-991866207: 15193: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366680|s1'
-991866207: 15194: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83666a0|s1'
-991866207: 15195: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83666c0|s1'
-991866207: 15196: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83666e0|s1'
-991866207: 15197: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369100|s1'
-991866207: 15198: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366700|s1'
-991866207: 15199: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8366720|s1'
-991866207: 15200: checking heap
-991866207: 15200: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8366740|s1'
-991866207: 15201: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8366760|s1'
-991866207: 15202: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368480|s1'
-991866207: 15203: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8366780|s1'
-991866207: 15204: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83667a0|s1'
-991866207: 15205: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83667c0|s1'
-991866207: 15206: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83667e0|s1'
-991866207: 15207: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368500|s1'
-991866207: 15208: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8366800|s1'
-991866207: 15209: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8366820|s1'
-991866207: 15210: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366840|s1'
-991866207: 15211: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366860|s1'
-991866207: 15212: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8366880|s1'
-991866207: 15213: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83668a0|s1'
-991866207: 15214: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369140|s1'
-991866207: 15215: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368580|s1'
-991866207: 15216: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83668c0|s1'
-991866207: 15217: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83668e0|s1'
-991866207: 15218: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366900|s1'
-991866207: 15219: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366920|s1'
-991866207: 15220: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366940|s1'
-991866207: 15221: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369180|s1'
-991866207: 15222: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8366960|s1'
-991866207: 15223: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8366980|s1'
-991866207: 15224: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83669a0|s1'
-991866207: 15225: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83669c0|s1'
-991866207: 15226: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368600|s1'
-991866207: 15227: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83669e0|s1'
-991866207: 15228: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8366a00|s1'
-991866207: 15229: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366a20|s1'
-991866207: 15230: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366a40|s1'
-991866207: 15231: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368680|s1'
-991866207: 15232: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8366a60|s1'
-991866207: 15233: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8366a80|s1'
-991866207: 15234: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8366aa0|s1'
-991866207: 15235: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8366ac0|s1'
-991866207: 15236: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368700|s1'
-991866207: 15237: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8366ae0|s1'
-991866207: 15238: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8366b00|s1'
-991866207: 15239: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368780|s1'
-991866207: 15240: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8366b20|s1'
-991866207: 15241: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8366b40|s1'
-991866207: 15242: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366b60|s1'
-991866207: 15243: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83691c0|s1'
-991866207: 15244: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368800|s1'
-991866207: 15245: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366b80|s1'
-991866207: 15246: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366ba0|s1'
-991866207: 15247: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366bc0|s1'
-991866207: 15248: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366be0|s1'
-991866207: 15249: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366c00|s1'
-991866207: 15250: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369200|s1'
-991866207: 15251: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8366c20|s1'
-991866207: 15252: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8366c40|s1'
-991866207: 15253: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8366c60|s1'
-991866207: 15254: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8366c80|s1'
-991866207: 15255: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366ca0|s1'
-991866207: 15256: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366cc0|s1'
-991866207: 15257: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369240|s1'
-991866207: 15258: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368880|s1'
-991866207: 15259: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366ce0|s1'
-991866207: 15260: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366d00|s1'
-991866207: 15261: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366d20|s1'
-991866207: 15262: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366d40|s1'
-991866207: 15263: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366d60|s1'
-991866207: 15264: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369280|s1'
-991866207: 15265: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366d80|s1'
-991866207: 15266: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8366da0|s1'
-991866207: 15267: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8366dc0|s1'
-991866207: 15268: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8366de0|s1'
-991866207: 15269: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366e00|s1'
-991866207: 15270: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366e20|s1'
-991866207: 15271: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83692c0|s1'
-991866207: 15272: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368900|s1'
-991866207: 15273: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366e40|s1'
-991866207: 15274: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366e60|s1'
-991866207: 15275: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366e80|s1'
-991866207: 15276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366ea0|s1'
-991866207: 15277: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8366ec0|s1'
-991866207: 15278: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369300|s1'
-991866207: 15279: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366ee0|s1'
-991866207: 15280: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8366f00|s1'
-991866207: 15281: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8366f20|s1'
-991866207: 15282: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8366f40|s1'
-991866207: 15283: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8366f60|s1'
-991866207: 15284: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366f80|s1'
-991866207: 15285: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369340|s1'
-991866207: 15286: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368980|s1'
-991866207: 15287: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366fa0|s1'
-991866207: 15288: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8366fc0|s1'
-991866207: 15289: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8366fe0|s1'
-991866207: 15290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b000|s1'
-991866207: 15291: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836b020|s1'
-991866207: 15292: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369380|s1'
-991866207: 15293: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836b040|s1'
-991866207: 15294: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836b060|s1'
-991866207: 15295: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836b080|s1'
-991866207: 15296: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836b0a0|s1'
-991866207: 15297: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368a00|s1'
-991866207: 15298: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x836b0c0|s1'
-991866207: 15299: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x836b0e0|s1'
-991866207: 15300: checking heap
-991866207: 15300: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b100|s1'
-991866207: 15301: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b120|s1'
-991866207: 15302: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368a80|s1'
-991866207: 15303: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x836b140|s1'
-991866207: 15304: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368b00|s1'
-991866207: 15305: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x836b160|s1'
-991866207: 15306: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b180|s1'
-991866207: 15307: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b1a0|s1'
-991866207: 15308: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b1c0|s1'
-991866207: 15309: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b1e0|s1'
-991866207: 15310: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368b80|s1'
-991866207: 15311: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x836b200|s1'
-991866207: 15312: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x836b220|s1'
-991866207: 15313: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836b240|s1'
-991866207: 15314: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b260|s1'
-991866207: 15315: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83693c0|s1'
-991866207: 15316: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368c00|s1'
-991866207: 15317: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b280|s1'
-991866207: 15318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b2a0|s1'
-991866207: 15319: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b2c0|s1'
-991866207: 15320: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b2e0|s1'
-991866207: 15321: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836b300|s1'
-991866207: 15322: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369400|s1'
-991866207: 15323: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836b320|s1'
-991866207: 15324: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836b340|s1'
-991866207: 15325: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368c80|s1'
-991866207: 15326: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x836b360|s1'
-991866207: 15327: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x836b380|s1'
-991866207: 15328: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b3a0|s1'
-991866207: 15329: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b3c0|s1'
-991866207: 15330: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368d00|s1'
-991866207: 15331: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x836b3e0|s1'
-991866207: 15332: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368d80|s1'
-991866207: 15333: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x836b400|s1'
-991866207: 15334: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b420|s1'
-991866207: 15335: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b440|s1'
-991866207: 15336: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b460|s1'
-991866207: 15337: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b480|s1'
-991866207: 15338: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368e00|s1'
-991866207: 15339: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x836b4a0|s1'
-991866207: 15340: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x836b4c0|s1'
-991866207: 15341: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836b4e0|s1'
-991866207: 15342: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b500|s1'
-991866207: 15343: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369440|s1'
-991866207: 15344: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368e80|s1'
-991866207: 15345: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b520|s1'
-991866207: 15346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b540|s1'
-991866207: 15347: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b560|s1'
-991866207: 15348: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b580|s1'
-991866207: 15349: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836b5a0|s1'
-991866207: 15350: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369480|s1'
-991866207: 15351: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836b5c0|s1'
-991866207: 15352: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836b5e0|s1'
-991866207: 15353: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836b600|s1'
-991866207: 15354: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836b620|s1'
-991866207: 15355: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368f00|s1'
-991866207: 15356: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x836b640|s1'
-991866207: 15357: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x836b660|s1'
-991866207: 15358: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b680|s1'
-991866207: 15359: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b6a0|s1'
-991866207: 15360: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8368f80|s1'
-991866207: 15361: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x836b6c0|s1'
-991866207: 15362: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d000|s1'
-991866207: 15363: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x836b6e0|s1'
-991866207: 15364: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b700|s1'
-991866207: 15365: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b720|s1'
-991866207: 15366: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836b740|s1'
-991866207: 15367: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836b760|s1'
-991866207: 15368: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d080|s1'
-991866207: 15369: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x836b780|s1'
-991866207: 15370: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x836b7a0|s1'
-991866207: 15371: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x836b7c0|s1'
-991866207: 15372: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b7e0|s1'
-991866207: 15373: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83694c0|s1'
-991866207: 15374: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d100|s1'
-991866207: 15375: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b800|s1'
-991866207: 15376: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b820|s1'
-991866207: 15377: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b840|s1'
-991866207: 15378: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b860|s1'
-991866207: 15379: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836b880|s1'
-991866207: 15380: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369500|s1'
-991866207: 15381: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x836b8a0|s1'
-991866207: 15382: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836b8c0|s1'
-991866207: 15383: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836b8e0|s1'
-991866207: 15384: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836b900|s1'
-991866207: 15385: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x836b920|s1'
-991866207: 15386: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b940|s1'
-991866207: 15387: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369540|s1'
-991866207: 15388: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d180|s1'
-991866207: 15389: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836b960|s1'
-991866207: 15390: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836b980|s1'
-991866207: 15391: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x836b9a0|s1'
-991866207: 15392: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x836b9c0|s1'
-991866207: 15393: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x836b9e0|s1'
-991866207: 15394: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836ba00|s1'
-991866207: 15395: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836ba20|s1'
-991866207: 15396: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836ba40|s1'
-991866207: 15397: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836ba60|s1'
-991866207: 15398: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836ba80|s1'
-991866207: 15399: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836baa0|s1'
-991866207: 15400: checking heap
-991866207: 15400: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836bac0|s1'
-991866207: 15401: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836bae0|s1'
-991866207: 15402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bb00|s1'
-991866207: 15403: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369580|s1'
-991866207: 15404: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d200|s1'
-991866207: 15405: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836bb20|s1'
-991866207: 15406: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bb40|s1'
-991866207: 15407: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836bb60|s1'
-991866207: 15408: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bb80|s1'
-991866207: 15409: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836bba0|s1'
-991866207: 15410: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83695c0|s1'
-991866207: 15411: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836bbc0|s1'
-991866207: 15412: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836bbe0|s1'
-991866207: 15413: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836bc00|s1'
-991866207: 15414: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836bc20|s1'
-991866207: 15415: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836bc40|s1'
-991866207: 15416: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836bc60|s1'
-991866207: 15417: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836bc80|s1'
-991866207: 15418: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836bca0|s1'
-991866207: 15419: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x836bcc0|s1'
-991866207: 15420: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bce0|s1'
-991866207: 15421: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369600|s1'
-991866207: 15422: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d280|s1'
-991866207: 15423: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836bd00|s1'
-991866207: 15424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bd20|s1'
-991866207: 15425: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836bd40|s1'
-991866207: 15426: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bd60|s1'
-991866207: 15427: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836bd80|s1'
-991866207: 15428: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369640|s1'
-991866207: 15429: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x836bda0|s1'
-991866207: 15430: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836bdc0|s1'
-991866207: 15431: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836bde0|s1'
-991866207: 15432: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836be00|s1'
-991866207: 15433: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836be20|s1'
-991866207: 15434: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836be40|s1'
-991866207: 15435: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369680|s1'
-991866207: 15436: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d300|s1'
-991866207: 15437: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836be60|s1'
-991866207: 15438: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836be80|s1'
-991866207: 15439: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836bea0|s1'
-991866207: 15440: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bec0|s1'
-991866207: 15441: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836bee0|s1'
-991866207: 15442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bf00|s1'
-991866207: 15443: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836bf20|s1'
-991866207: 15444: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83696c0|s1'
-991866207: 15445: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836bf40|s1'
-991866207: 15446: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836bf60|s1'
-991866207: 15447: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836bf80|s1'
-991866207: 15448: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836bfa0|s1'
-991866207: 15449: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836bfc0|s1'
-991866207: 15450: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836bfe0|s1'
-991866207: 15451: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369700|s1'
-991866207: 15452: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d380|s1'
-991866207: 15453: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f000|s1'
-991866207: 15454: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f020|s1'
-991866207: 15455: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f040|s1'
-991866207: 15456: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f060|s1'
-991866207: 15457: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f080|s1'
-991866207: 15458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f0a0|s1'
-991866207: 15459: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836f0c0|s1'
-991866207: 15460: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369740|s1'
-991866207: 15461: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836f0e0|s1'
-991866207: 15462: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836f100|s1'
-991866207: 15463: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836f120|s1'
-991866207: 15464: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836f140|s1'
-991866207: 15465: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d400|s1'
-991866207: 15466: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x836f160|s1'
-991866207: 15467: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d480|s1'
-991866207: 15468: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x836f180|s1'
-991866207: 15469: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836f1a0|s1'
-991866207: 15470: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836f1c0|s1'
-991866207: 15471: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836f1e0|s1'
-991866207: 15472: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836f200|s1'
-991866207: 15473: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x836f220|s1'
-991866207: 15474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f240|s1'
-991866207: 15475: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369780|s1'
-991866207: 15476: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d500|s1'
-991866207: 15477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f260|s1'
-991866207: 15478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f280|s1'
-991866207: 15479: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f2a0|s1'
-991866207: 15480: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f2c0|s1'
-991866207: 15481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f2e0|s1'
-991866207: 15482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f300|s1'
-991866207: 15483: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836f320|s1'
-991866207: 15484: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83697c0|s1'
-991866207: 15485: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x836f340|s1'
-991866207: 15486: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836f360|s1'
-991866207: 15487: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d580|s1'
-991866207: 15488: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x836f380|s1'
-991866207: 15489: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d600|s1'
-991866207: 15490: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x836f3a0|s1'
-991866207: 15491: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836f3c0|s1'
-991866207: 15492: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836f3e0|s1'
-991866207: 15493: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836f400|s1'
-991866207: 15494: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836f420|s1'
-991866207: 15495: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836f440|s1'
-991866207: 15496: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f460|s1'
-991866207: 15497: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369800|s1'
-991866207: 15498: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d680|s1'
-991866207: 15499: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f480|s1'
-991866207: 15500: checking heap
-991866207: 15500: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f4a0|s1'
-991866207: 15501: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f4c0|s1'
-991866207: 15502: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f4e0|s1'
-991866207: 15503: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836f500|s1'
-991866207: 15504: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369840|s1'
-991866207: 15505: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836f520|s1'
-991866207: 15506: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836f540|s1'
-991866207: 15507: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836f560|s1'
-991866207: 15508: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836f580|s1'
-991866207: 15509: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x836f5a0|s1'
-991866207: 15510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f5c0|s1'
-991866207: 15511: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369880|s1'
-991866207: 15512: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d700|s1'
-991866207: 15513: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f5e0|s1'
-991866207: 15514: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f600|s1'
-991866207: 15515: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x836f620|s1'
-991866207: 15516: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x836f640|s1'
-991866207: 15517: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x836f660|s1'
-991866207: 15518: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836f680|s1'
-991866207: 15519: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836f6a0|s1'
-991866207: 15520: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836f6c0|s1'
-991866207: 15521: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x836f6e0|s1'
-991866207: 15522: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83698c0|s1'
-991866207: 15523: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f700|s1'
-991866207: 15524: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d780|s1'
-991866207: 15525: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x836f720|s1'
-991866207: 15526: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f740|s1'
-991866207: 15527: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836f760|s1'
-991866207: 15528: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836f780|s1'
-991866207: 15529: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x836f7a0|s1'
-991866207: 15530: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x836f7c0|s1'
-991866207: 15531: *** alloc: at 'ra=0x80e6889' for 13 bytes, got '0x836f7e0|s1'
-991866207: 15532: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836f800|s1'
-991866207: 15533: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836f820|s1'
-991866207: 15534: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836f840|s1'
-991866207: 15535: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x836f860|s1'
-991866207: 15536: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f880|s1'
-991866207: 15537: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369900|s1'
-991866207: 15538: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d800|s1'
-991866207: 15539: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f8a0|s1'
-991866207: 15540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f8c0|s1'
-991866207: 15541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836f8e0|s1'
-991866207: 15542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f900|s1'
-991866207: 15543: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836f920|s1'
-991866207: 15544: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369940|s1'
-991866207: 15545: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x836f940|s1'
-991866207: 15546: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836f960|s1'
-991866207: 15547: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836f980|s1'
-991866207: 15548: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836f9a0|s1'
-991866207: 15549: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836f9c0|s1'
-991866207: 15550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836f9e0|s1'
-991866207: 15551: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369980|s1'
-991866207: 15552: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d880|s1'
-991866207: 15553: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fa00|s1'
-991866207: 15554: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fa20|s1'
-991866207: 15555: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fa40|s1'
-991866207: 15556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fa60|s1'
-991866207: 15557: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836fa80|s1'
-991866207: 15558: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83699c0|s1'
-991866207: 15559: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x836faa0|s1'
-991866207: 15560: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836fac0|s1'
-991866207: 15561: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836fae0|s1'
-991866207: 15562: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836fb00|s1'
-991866207: 15563: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836fb20|s1'
-991866207: 15564: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836fb40|s1'
-991866207: 15565: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836fb60|s1'
-991866207: 15566: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836fb80|s1'
-991866207: 15567: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836fba0|s1'
-991866207: 15568: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fbc0|s1'
-991866207: 15569: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369a00|s1'
-991866207: 15570: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d900|s1'
-991866207: 15571: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fbe0|s1'
-991866207: 15572: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fc00|s1'
-991866207: 15573: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fc20|s1'
-991866207: 15574: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fc40|s1'
-991866207: 15575: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836fc60|s1'
-991866207: 15576: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369a40|s1'
-991866207: 15577: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836fc80|s1'
-991866207: 15578: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836fca0|s1'
-991866207: 15579: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836fcc0|s1'
-991866207: 15580: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836fce0|s1'
-991866207: 15581: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836fd00|s1'
-991866207: 15582: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fd20|s1'
-991866207: 15583: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369a80|s1'
-991866207: 15584: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836d980|s1'
-991866207: 15585: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fd40|s1'
-991866207: 15586: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fd60|s1'
-991866207: 15587: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fd80|s1'
-991866207: 15588: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fda0|s1'
-991866207: 15589: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fdc0|s1'
-991866207: 15590: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fde0|s1'
-991866207: 15591: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836fe00|s1'
-991866207: 15592: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836fe20|s1'
-991866207: 15593: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x836fe40|s1'
-991866207: 15594: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369ac0|s1'
-991866207: 15595: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836fe60|s1'
-991866207: 15596: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x836fe80|s1'
-991866207: 15597: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x836fea0|s1'
-991866207: 15598: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x836fec0|s1'
-991866207: 15599: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836fee0|s1'
-991866207: 15600: checking heap
-991866207: 15600: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836ff00|s1'
-991866207: 15601: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x836ff20|s1'
-991866207: 15602: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x836ff40|s1'
-991866207: 15603: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x836ff60|s1'
-991866207: 15604: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836ff80|s1'
-991866207: 15605: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369b00|s1'
-991866207: 15606: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836da00|s1'
-991866207: 15607: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836ffa0|s1'
-991866207: 15608: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x836ffc0|s1'
-991866207: 15609: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x836ffe0|s1'
-991866207: 15610: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371000|s1'
-991866207: 15611: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8371020|s1'
-991866207: 15612: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369b40|s1'
-991866207: 15613: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8371040|s1'
-991866207: 15614: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371060|s1'
-991866207: 15615: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371080|s1'
-991866207: 15616: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83710a0|s1'
-991866207: 15617: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83710c0|s1'
-991866207: 15618: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83710e0|s1'
-991866207: 15619: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369b80|s1'
-991866207: 15620: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836da80|s1'
-991866207: 15621: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371100|s1'
-991866207: 15622: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371120|s1'
-991866207: 15623: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371140|s1'
-991866207: 15624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371160|s1'
-991866207: 15625: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371180|s1'
-991866207: 15626: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83711a0|s1'
-991866207: 15627: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83711c0|s1'
-991866207: 15628: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369bc0|s1'
-991866207: 15629: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83711e0|s1'
-991866207: 15630: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371200|s1'
-991866207: 15631: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371220|s1'
-991866207: 15632: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371240|s1'
-991866207: 15633: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836db00|s1'
-991866207: 15634: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8371260|s1'
-991866207: 15635: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8371280|s1'
-991866207: 15636: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83712a0|s1'
-991866207: 15637: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83712c0|s1'
-991866207: 15638: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836db80|s1'
-991866207: 15639: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83712e0|s1'
-991866207: 15640: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836dc00|s1'
-991866207: 15641: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8371300|s1'
-991866207: 15642: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8371320|s1'
-991866207: 15643: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8371340|s1'
-991866207: 15644: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8371360|s1'
-991866207: 15645: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8371380|s1'
-991866207: 15646: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836dc80|s1'
-991866207: 15647: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83713a0|s1'
-991866207: 15648: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83713c0|s1'
-991866207: 15649: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83713e0|s1'
-991866207: 15650: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371400|s1'
-991866207: 15651: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369c00|s1'
-991866207: 15652: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836dd00|s1'
-991866207: 15653: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371420|s1'
-991866207: 15654: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371440|s1'
-991866207: 15655: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371460|s1'
-991866207: 15656: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371480|s1'
-991866207: 15657: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83714a0|s1'
-991866207: 15658: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369c40|s1'
-991866207: 15659: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83714c0|s1'
-991866207: 15660: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83714e0|s1'
-991866207: 15661: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8371500|s1'
-991866207: 15662: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371520|s1'
-991866207: 15663: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369c80|s1'
-991866207: 15664: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836dd80|s1'
-991866207: 15665: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371540|s1'
-991866207: 15666: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371560|s1'
-991866207: 15667: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371580|s1'
-991866207: 15668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83715a0|s1'
-991866207: 15669: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83715c0|s1'
-991866207: 15670: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369cc0|s1'
-991866207: 15671: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x83715e0|s1'
-991866207: 15672: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371600|s1'
-991866207: 15673: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8371620|s1'
-991866207: 15674: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371640|s1'
-991866207: 15675: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369d00|s1'
-991866207: 15676: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836de00|s1'
-991866207: 15677: *** alloc: at 'uentry.c:4143' for 4 bytes, got '0x8371660|s1'
-991866207: 15678: *** alloc: at 'uentry.c:4144' for 12 bytes, got '0x8371680|s1'
-991866207: 15679: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x83716a0|s1'
-991866207: 15680: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83716c0|s1'
-991866207: 15681: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83716e0|s1'
-991866207: 15682: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371700|s1'
-991866207: 15683: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8371720|s1'
-991866207: 15684: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371740|s1'
-991866207: 15685: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369d40|s1'
-991866207: 15686: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836de80|s1'
-991866207: 15687: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371760|s1'
-991866207: 15688: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8371780|s1'
-991866207: 15689: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x83717a0|s1'
-991866207: 15690: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83717c0|s1'
-991866207: 15691: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83717e0|s1'
-991866207: 15692: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8371800|s1'
-991866207: 15693: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371820|s1'
-991866207: 15694: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369d80|s1'
-991866207: 15695: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836df00|s1'
-991866207: 15696: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371840|s1'
-991866207: 15697: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371860|s1'
-991866207: 15698: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371880|s1'
-991866207: 15699: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83718a0|s1'
-991866207: 15700: checking heap
-991866207: 15700: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83718c0|s1'
-991866207: 15701: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369dc0|s1'
-991866207: 15702: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x83718e0|s1'
-991866207: 15703: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371900|s1'
-991866207: 15704: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371920|s1'
-991866207: 15705: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371940|s1'
-991866207: 15706: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8371960|s1'
-991866207: 15707: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371980|s1'
-991866207: 15708: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369e00|s1'
-991866207: 15709: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x836df80|s1'
-991866207: 15710: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83719a0|s1'
-991866207: 15711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83719c0|s1'
-991866207: 15712: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83719e0|s1'
-991866207: 15713: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371a00|s1'
-991866207: 15714: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8371a20|s1'
-991866207: 15715: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369e40|s1'
-991866207: 15716: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8371a40|s1'
-991866207: 15717: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371a60|s1'
-991866207: 15718: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371a80|s1'
-991866207: 15719: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371aa0|s1'
-991866207: 15720: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8371ac0|s1'
-991866207: 15721: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371ae0|s1'
-991866207: 15722: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369e80|s1'
-991866207: 15723: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373000|s1'
-991866207: 15724: *** alloc: at 'uentry.c:4143' for 4 bytes, got '0x8371b00|s1'
-991866207: 15725: *** alloc: at 'uentry.c:4144' for 12 bytes, got '0x8371b20|s1'
-991866207: 15726: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8371b40|s1'
-991866207: 15727: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371b60|s1'
-991866207: 15728: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371b80|s1'
-991866207: 15729: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371ba0|s1'
-991866207: 15730: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8371bc0|s1'
-991866207: 15731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371be0|s1'
-991866207: 15732: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369ec0|s1'
-991866207: 15733: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373080|s1'
-991866207: 15734: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371c00|s1'
-991866207: 15735: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x8371c20|s1'
-991866207: 15736: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x8371c40|s1'
-991866207: 15737: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8371c60|s1'
-991866207: 15738: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371c80|s1'
-991866207: 15739: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371ca0|s1'
-991866207: 15740: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371cc0|s1'
-991866207: 15741: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8371ce0|s1'
-991866207: 15742: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371d00|s1'
-991866207: 15743: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369f00|s1'
-991866207: 15744: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373100|s1'
-991866207: 15745: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371d20|s1'
-991866207: 15746: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371d40|s1'
-991866207: 15747: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371d60|s1'
-991866207: 15748: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371d80|s1'
-991866207: 15749: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8371da0|s1'
-991866207: 15750: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8369f40|s1'
-991866207: 15751: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8371dc0|s1'
-991866207: 15752: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371de0|s1'
-991866207: 15753: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371e00|s1'
-991866207: 15754: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371e20|s1'
-991866207: 15755: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8371e40|s1'
-991866207: 15756: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371e60|s1'
-991866207: 15757: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369f80|s1'
-991866207: 15758: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373180|s1'
-991866207: 15759: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371e80|s1'
-991866207: 15760: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371ea0|s1'
-991866207: 15761: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8371ec0|s1'
-991866207: 15762: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8371ee0|s1'
-991866207: 15763: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x8371f00|s1'
-991866207: 15764: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8371f20|s1'
-991866207: 15765: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8371f40|s1'
-991866207: 15766: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8371f60|s1'
-991866207: 15767: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8371f80|s1'
-991866207: 15768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371fa0|s1'
-991866207: 15769: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8369fc0|s1'
-991866207: 15770: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373200|s1'
-991866207: 15771: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8371fc0|s1'
-991866207: 15772: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8371fe0|s1'
-991866207: 15773: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x8375000|s1'
-991866207: 15774: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x8375020|s1'
-991866207: 15775: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8375040|s1'
-991866207: 15776: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8375060|s1'
-991866207: 15777: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8375080|s1'
-991866207: 15778: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83750a0|s1'
-991866207: 15779: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x83750c0|s1'
-991866207: 15780: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377000|s1'
-991866207: 15781: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83750e0|s1'
-991866207: 15782: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373280|s1'
-991866207: 15783: *** alloc: at 'stateInfo.c:104' for 12 bytes, got '0x8375100|s1'
-991866207: 15784: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375120|s1'
-991866207: 15785: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375140|s1'
-991866207: 15786: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375160|s1'
-991866207: 15787: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x8375180|s1'
-991866207: 15788: *** alloc: at 'uentry.c:6059' for 8 bytes, got '0x83751a0|s1'
-991866207: 15789: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x83751c0|s1'
-991866207: 15790: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83751e0|s1'
-991866207: 15791: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8375200|s1'
-991866207: 15792: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8375220|s1'
-991866207: 15793: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8375240|s1'
-991866207: 15794: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375260|s1'
-991866207: 15795: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377040|s1'
-991866207: 15796: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373300|s1'
-991866207: 15797: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375280|s1'
-991866207: 15798: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83752a0|s1'
-991866207: 15799: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x83752c0|s1'
-991866207: 15800: checking heap
-991866207: 15800: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x83752e0|s1'
-991866207: 15801: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x8375300|s1'
-991866207: 15802: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8375320|s1'
-991866207: 15803: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8375340|s1'
-991866207: 15804: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8375360|s1'
-991866207: 15805: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8375380|s1'
-991866207: 15806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83753a0|s1'
-991866207: 15807: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377080|s1'
-991866207: 15808: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373380|s1'
-991866207: 15809: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83753c0|s1'
-991866207: 15810: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83753e0|s1'
-991866207: 15811: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375400|s1'
-991866207: 15812: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375420|s1'
-991866207: 15813: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8375440|s1'
-991866207: 15814: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83770c0|s1'
-991866207: 15815: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8375460|s1'
-991866207: 15816: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8375480|s1'
-991866207: 15817: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83754a0|s1'
-991866207: 15818: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83754c0|s1'
-991866207: 15819: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83754e0|s1'
-991866207: 15820: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375500|s1'
-991866207: 15821: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375520|s1'
-991866207: 15822: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375540|s1'
-991866207: 15823: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373400|s1'
-991866207: 15824: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8375560|s1'
-991866207: 15825: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373480|s1'
-991866207: 15826: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8375580|s1'
-991866207: 15827: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83755a0|s1'
-991866207: 15828: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83755c0|s1'
-991866207: 15829: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83755e0|s1'
-991866207: 15830: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375600|s1'
-991866207: 15831: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377100|s1'
-991866207: 15832: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373500|s1'
-991866207: 15833: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375620|s1'
-991866207: 15834: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375640|s1'
-991866207: 15835: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375660|s1'
-991866207: 15836: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375680|s1'
-991866207: 15837: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83756a0|s1'
-991866207: 15838: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377140|s1'
-991866207: 15839: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83756c0|s1'
-991866207: 15840: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83756e0|s1'
-991866207: 15841: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8375700|s1'
-991866207: 15842: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8375720|s1'
-991866207: 15843: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375740|s1'
-991866207: 15844: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375760|s1'
-991866207: 15845: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375780|s1'
-991866207: 15846: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83757a0|s1'
-991866207: 15847: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373580|s1'
-991866207: 15848: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83757c0|s1'
-991866207: 15849: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373600|s1'
-991866207: 15850: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83757e0|s1'
-991866207: 15851: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375800|s1'
-991866207: 15852: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375820|s1'
-991866207: 15853: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373680|s1'
-991866207: 15854: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8375840|s1'
-991866207: 15855: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373700|s1'
-991866207: 15856: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8375860|s1'
-991866207: 15857: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375880|s1'
-991866207: 15858: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83758a0|s1'
-991866207: 15859: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83758c0|s1'
-991866207: 15860: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83758e0|s1'
-991866207: 15861: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377180|s1'
-991866207: 15862: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373780|s1'
-991866207: 15863: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375900|s1'
-991866207: 15864: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375920|s1'
-991866207: 15865: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375940|s1'
-991866207: 15866: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375960|s1'
-991866207: 15867: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8375980|s1'
-991866207: 15868: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83771c0|s1'
-991866207: 15869: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83759a0|s1'
-991866207: 15870: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83759c0|s1'
-991866207: 15871: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83759e0|s1'
-991866207: 15872: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8375a00|s1'
-991866207: 15873: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375a20|s1'
-991866207: 15874: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375a40|s1'
-991866207: 15875: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375a60|s1'
-991866207: 15876: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375a80|s1'
-991866207: 15877: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373800|s1'
-991866207: 15878: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8375aa0|s1'
-991866207: 15879: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373880|s1'
-991866207: 15880: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8375ac0|s1'
-991866207: 15881: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375ae0|s1'
-991866207: 15882: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375b00|s1'
-991866207: 15883: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8375b20|s1'
-991866207: 15884: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375b40|s1'
-991866207: 15885: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377200|s1'
-991866207: 15886: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373900|s1'
-991866207: 15887: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375b60|s1'
-991866207: 15888: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375b80|s1'
-991866207: 15889: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375ba0|s1'
-991866207: 15890: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375bc0|s1'
-991866207: 15891: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8375be0|s1'
-991866207: 15892: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377240|s1'
-991866207: 15893: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8375c00|s1'
-991866207: 15894: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8375c20|s1'
-991866207: 15895: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8375c40|s1'
-991866207: 15896: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8375c60|s1'
-991866207: 15897: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375c80|s1'
-991866207: 15898: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375ca0|s1'
-991866207: 15899: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375cc0|s1'
-991866207: 15900: checking heap
-991866207: 15900: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375ce0|s1'
-991866207: 15901: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373980|s1'
-991866207: 15902: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8375d00|s1'
-991866207: 15903: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373a00|s1'
-991866207: 15904: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8375d20|s1'
-991866207: 15905: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8375d40|s1'
-991866207: 15906: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8375d60|s1'
-991866207: 15907: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8375d80|s1'
-991866207: 15908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375da0|s1'
-991866207: 15909: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377280|s1'
-991866207: 15910: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373a80|s1'
-991866207: 15911: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375dc0|s1'
-991866207: 15912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375de0|s1'
-991866207: 15913: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375e00|s1'
-991866207: 15914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375e20|s1'
-991866207: 15915: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8375e40|s1'
-991866207: 15916: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83772c0|s1'
-991866207: 15917: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8375e60|s1'
-991866207: 15918: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8375e80|s1'
-991866207: 15919: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8375ea0|s1'
-991866207: 15920: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8375ec0|s1'
-991866207: 15921: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8375ee0|s1'
-991866207: 15922: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375f00|s1'
-991866207: 15923: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377300|s1'
-991866207: 15924: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373b00|s1'
-991866207: 15925: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375f20|s1'
-991866207: 15926: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375f40|s1'
-991866207: 15927: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8375f60|s1'
-991866207: 15928: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8375f80|s1'
-991866207: 15929: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8375fa0|s1'
-991866207: 15930: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377340|s1'
-991866207: 15931: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8375fc0|s1'
-991866207: 15932: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8375fe0|s1'
-991866207: 15933: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8379000|s1'
-991866207: 15934: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8379020|s1'
-991866207: 15935: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379040|s1'
-991866207: 15936: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379060|s1'
-991866207: 15937: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373b80|s1'
-991866207: 15938: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8379080|s1'
-991866207: 15939: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373c00|s1'
-991866207: 15940: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83790a0|s1'
-991866207: 15941: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83790c0|s1'
-991866207: 15942: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83790e0|s1'
-991866207: 15943: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379100|s1'
-991866207: 15944: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379120|s1'
-991866207: 15945: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8379140|s1'
-991866207: 15946: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379160|s1'
-991866207: 15947: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377380|s1'
-991866207: 15948: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373c80|s1'
-991866207: 15949: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379180|s1'
-991866207: 15950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83791a0|s1'
-991866207: 15951: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83791c0|s1'
-991866207: 15952: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83791e0|s1'
-991866207: 15953: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8379200|s1'
-991866207: 15954: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83773c0|s1'
-991866207: 15955: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8379220|s1'
-991866207: 15956: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8379240|s1'
-991866207: 15957: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8379260|s1'
-991866207: 15958: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8379280|s1'
-991866207: 15959: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83792a0|s1'
-991866207: 15960: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83792c0|s1'
-991866207: 15961: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373d00|s1'
-991866207: 15962: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83792e0|s1'
-991866207: 15963: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373d80|s1'
-991866207: 15964: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8379300|s1'
-991866207: 15965: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379320|s1'
-991866207: 15966: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379340|s1'
-991866207: 15967: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379360|s1'
-991866207: 15968: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379380|s1'
-991866207: 15969: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83793a0|s1'
-991866207: 15970: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83793c0|s1'
-991866207: 15971: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377400|s1'
-991866207: 15972: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373e00|s1'
-991866207: 15973: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83793e0|s1'
-991866207: 15974: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379400|s1'
-991866207: 15975: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379420|s1'
-991866207: 15976: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379440|s1'
-991866207: 15977: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8379460|s1'
-991866207: 15978: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377440|s1'
-991866207: 15979: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8379480|s1'
-991866207: 15980: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83794a0|s1'
-991866207: 15981: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83794c0|s1'
-991866207: 15982: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83794e0|s1'
-991866207: 15983: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379500|s1'
-991866207: 15984: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379520|s1'
-991866207: 15985: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379540|s1'
-991866207: 15986: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379560|s1'
-991866207: 15987: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373e80|s1'
-991866207: 15988: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8379580|s1'
-991866207: 15989: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373f00|s1'
-991866207: 15990: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83795a0|s1'
-991866207: 15991: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83795c0|s1'
-991866207: 15992: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83795e0|s1'
-991866207: 15993: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8379600|s1'
-991866207: 15994: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379620|s1'
-991866207: 15995: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377480|s1'
-991866207: 15996: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8373f80|s1'
-991866207: 15997: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379640|s1'
-991866207: 15998: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379660|s1'
-991866207: 15999: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379680|s1'
-991866207: 16000: checking heap
-991866207: 16000: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83796a0|s1'
-991866207: 16001: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83796c0|s1'
-991866207: 16002: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83774c0|s1'
-991866207: 16003: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83796e0|s1'
-991866207: 16004: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8379700|s1'
-991866207: 16005: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8379720|s1'
-991866207: 16006: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8379740|s1'
-991866207: 16007: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379760|s1'
-991866207: 16008: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379780|s1'
-991866207: 16009: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b000|s1'
-991866207: 16010: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83797a0|s1'
-991866207: 16011: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83797c0|s1'
-991866207: 16012: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83797e0|s1'
-991866207: 16013: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379800|s1'
-991866207: 16014: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b080|s1'
-991866207: 16015: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8379820|s1'
-991866207: 16016: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8379840|s1'
-991866207: 16017: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b100|s1'
-991866207: 16018: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8379860|s1'
-991866207: 16019: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8379880|s1'
-991866207: 16020: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83798a0|s1'
-991866207: 16021: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377500|s1'
-991866207: 16022: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b180|s1'
-991866207: 16023: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83798c0|s1'
-991866207: 16024: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83798e0|s1'
-991866207: 16025: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379900|s1'
-991866207: 16026: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379920|s1'
-991866207: 16027: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8379940|s1'
-991866207: 16028: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377540|s1'
-991866207: 16029: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8379960|s1'
-991866207: 16030: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8379980|s1'
-991866207: 16031: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83799a0|s1'
-991866207: 16032: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83799c0|s1'
-991866207: 16033: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83799e0|s1'
-991866207: 16034: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379a00|s1'
-991866207: 16035: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377580|s1'
-991866207: 16036: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b200|s1'
-991866207: 16037: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379a20|s1'
-991866207: 16038: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379a40|s1'
-991866207: 16039: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379a60|s1'
-991866207: 16040: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379a80|s1'
-991866207: 16041: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8379aa0|s1'
-991866207: 16042: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83775c0|s1'
-991866207: 16043: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8379ac0|s1'
-991866207: 16044: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8379ae0|s1'
-991866207: 16045: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8379b00|s1'
-991866207: 16046: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8379b20|s1'
-991866207: 16047: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b280|s1'
-991866207: 16048: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8379b40|s1'
-991866207: 16049: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b300|s1'
-991866207: 16050: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8379b60|s1'
-991866207: 16051: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379b80|s1'
-991866207: 16052: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379ba0|s1'
-991866207: 16053: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379bc0|s1'
-991866207: 16054: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379be0|s1'
-991866207: 16055: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8379c00|s1'
-991866207: 16056: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379c20|s1'
-991866207: 16057: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377600|s1'
-991866207: 16058: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b380|s1'
-991866207: 16059: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379c40|s1'
-991866207: 16060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379c60|s1'
-991866207: 16061: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379c80|s1'
-991866207: 16062: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379ca0|s1'
-991866207: 16063: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8379cc0|s1'
-991866207: 16064: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377640|s1'
-991866207: 16065: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8379ce0|s1'
-991866207: 16066: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8379d00|s1'
-991866207: 16067: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8379d20|s1'
-991866207: 16068: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8379d40|s1'
-991866207: 16069: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8379d60|s1'
-991866207: 16070: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379d80|s1'
-991866207: 16071: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377680|s1'
-991866207: 16072: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b400|s1'
-991866207: 16073: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379da0|s1'
-991866207: 16074: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379dc0|s1'
-991866207: 16075: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379de0|s1'
-991866207: 16076: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379e00|s1'
-991866207: 16077: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8379e20|s1'
-991866207: 16078: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83776c0|s1'
-991866207: 16079: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8379e40|s1'
-991866207: 16080: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8379e60|s1'
-991866207: 16081: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8379e80|s1'
-991866207: 16082: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8379ea0|s1'
-991866207: 16083: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b480|s1'
-991866207: 16084: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8379ec0|s1'
-991866207: 16085: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b500|s1'
-991866207: 16086: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8379ee0|s1'
-991866207: 16087: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379f00|s1'
-991866207: 16088: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379f20|s1'
-991866207: 16089: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8379f40|s1'
-991866207: 16090: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8379f60|s1'
-991866207: 16091: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8379f80|s1'
-991866207: 16092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379fa0|s1'
-991866207: 16093: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377700|s1'
-991866207: 16094: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b580|s1'
-991866207: 16095: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8379fc0|s1'
-991866207: 16096: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8379fe0|s1'
-991866207: 16097: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d000|s1'
-991866207: 16098: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d020|s1'
-991866207: 16099: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837d040|s1'
-991866207: 16100: checking heap
-991866207: 16100: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377740|s1'
-991866207: 16101: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x837d060|s1'
-991866207: 16102: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837d080|s1'
-991866207: 16103: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x837d0a0|s1'
-991866207: 16104: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x837d0c0|s1'
-991866207: 16105: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d0e0|s1'
-991866207: 16106: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d100|s1'
-991866207: 16107: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d120|s1'
-991866207: 16108: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d140|s1'
-991866207: 16109: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b600|s1'
-991866207: 16110: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x837d160|s1'
-991866207: 16111: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b680|s1'
-991866207: 16112: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837d180|s1'
-991866207: 16113: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d1a0|s1'
-991866207: 16114: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d1c0|s1'
-991866207: 16115: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x837d1e0|s1'
-991866207: 16116: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d200|s1'
-991866207: 16117: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377780|s1'
-991866207: 16118: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b700|s1'
-991866207: 16119: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d220|s1'
-991866207: 16120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d240|s1'
-991866207: 16121: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d260|s1'
-991866207: 16122: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d280|s1'
-991866207: 16123: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837d2a0|s1'
-991866207: 16124: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83777c0|s1'
-991866207: 16125: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x837d2c0|s1'
-991866207: 16126: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837d2e0|s1'
-991866207: 16127: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x837d300|s1'
-991866207: 16128: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x837d320|s1'
-991866207: 16129: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d340|s1'
-991866207: 16130: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d360|s1'
-991866207: 16131: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b780|s1'
-991866207: 16132: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x837d380|s1'
-991866207: 16133: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x837d3a0|s1'
-991866207: 16134: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d3c0|s1'
-991866207: 16135: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d3e0|s1'
-991866207: 16136: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b800|s1'
-991866207: 16137: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x837d400|s1'
-991866207: 16138: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x837d420|s1'
-991866207: 16139: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b880|s1'
-991866207: 16140: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837d440|s1'
-991866207: 16141: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x837d460|s1'
-991866207: 16142: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d480|s1'
-991866207: 16143: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377800|s1'
-991866207: 16144: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b900|s1'
-991866207: 16145: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d4a0|s1'
-991866207: 16146: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d4c0|s1'
-991866207: 16147: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d4e0|s1'
-991866207: 16148: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d500|s1'
-991866207: 16149: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837d520|s1'
-991866207: 16150: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377840|s1'
-991866207: 16151: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x837d540|s1'
-991866207: 16152: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837d560|s1'
-991866207: 16153: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x837d580|s1'
-991866207: 16154: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x837d5a0|s1'
-991866207: 16155: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837b980|s1'
-991866207: 16156: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x837d5c0|s1'
-991866207: 16157: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837ba00|s1'
-991866207: 16158: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837d5e0|s1'
-991866207: 16159: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d600|s1'
-991866207: 16160: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d620|s1'
-991866207: 16161: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d640|s1'
-991866207: 16162: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d660|s1'
-991866207: 16163: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x837d680|s1'
-991866207: 16164: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d6a0|s1'
-991866207: 16165: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377880|s1'
-991866207: 16166: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837ba80|s1'
-991866207: 16167: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d6c0|s1'
-991866207: 16168: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d6e0|s1'
-991866207: 16169: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d700|s1'
-991866207: 16170: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d720|s1'
-991866207: 16171: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837d740|s1'
-991866207: 16172: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83778c0|s1'
-991866207: 16173: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x837d760|s1'
-991866207: 16174: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837d780|s1'
-991866207: 16175: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x837d7a0|s1'
-991866207: 16176: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x837d7c0|s1'
-991866207: 16177: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bb00|s1'
-991866207: 16178: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x837d7e0|s1'
-991866207: 16179: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x837d800|s1'
-991866207: 16180: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d820|s1'
-991866207: 16181: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d840|s1'
-991866207: 16182: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bb80|s1'
-991866207: 16183: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x837d860|s1'
-991866207: 16184: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x837d880|s1'
-991866207: 16185: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bc00|s1'
-991866207: 16186: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837d8a0|s1'
-991866207: 16187: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837d8c0|s1'
-991866207: 16188: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837d8e0|s1'
-991866207: 16189: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x837d900|s1'
-991866207: 16190: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d920|s1'
-991866207: 16191: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377900|s1'
-991866207: 16192: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bc80|s1'
-991866207: 16193: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d940|s1'
-991866207: 16194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d960|s1'
-991866207: 16195: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837d980|s1'
-991866207: 16196: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837d9a0|s1'
-991866207: 16197: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837d9c0|s1'
-991866207: 16198: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377940|s1'
-991866207: 16199: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x837d9e0|s1'
-991866207: 16200: checking heap
-991866207: 16200: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837da00|s1'
-991866207: 16201: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x837da20|s1'
-991866207: 16202: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x837da40|s1'
-991866207: 16203: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837da60|s1'
-991866207: 16204: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837da80|s1'
-991866207: 16205: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837daa0|s1'
-991866207: 16206: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837dac0|s1'
-991866207: 16207: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bd00|s1'
-991866207: 16208: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x837dae0|s1'
-991866207: 16209: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bd80|s1'
-991866207: 16210: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837db00|s1'
-991866207: 16211: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837db20|s1'
-991866207: 16212: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837db40|s1'
-991866207: 16213: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x837db60|s1'
-991866207: 16214: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837db80|s1'
-991866207: 16215: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377980|s1'
-991866207: 16216: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837be00|s1'
-991866207: 16217: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837dba0|s1'
-991866207: 16218: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837dbc0|s1'
-991866207: 16219: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837dbe0|s1'
-991866207: 16220: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837dc00|s1'
-991866207: 16221: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837dc20|s1'
-991866207: 16222: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x83779c0|s1'
-991866207: 16223: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x837dc40|s1'
-991866207: 16224: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837dc60|s1'
-991866207: 16225: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837dc80|s1'
-991866207: 16226: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837dca0|s1'
-991866207: 16227: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837dcc0|s1'
-991866207: 16228: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837dce0|s1'
-991866207: 16229: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837be80|s1'
-991866207: 16230: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x837dd00|s1'
-991866207: 16231: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bf00|s1'
-991866207: 16232: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837dd20|s1'
-991866207: 16233: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837dd40|s1'
-991866207: 16234: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837dd60|s1'
-991866207: 16235: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x837dd80|s1'
-991866207: 16236: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837dda0|s1'
-991866207: 16237: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377a00|s1'
-991866207: 16238: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837bf80|s1'
-991866207: 16239: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837ddc0|s1'
-991866207: 16240: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837dde0|s1'
-991866207: 16241: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837de00|s1'
-991866207: 16242: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837de20|s1'
-991866207: 16243: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x837de40|s1'
-991866207: 16244: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377a40|s1'
-991866207: 16245: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x837de60|s1'
-991866207: 16246: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x837de80|s1'
-991866207: 16247: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x837dea0|s1'
-991866207: 16248: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x837dec0|s1'
-991866207: 16249: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f000|s1'
-991866207: 16250: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x837dee0|s1'
-991866207: 16251: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f080|s1'
-991866207: 16252: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x837df00|s1'
-991866207: 16253: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837df20|s1'
-991866207: 16254: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837df40|s1'
-991866207: 16255: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x837df60|s1'
-991866207: 16256: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x837df80|s1'
-991866207: 16257: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x837dfa0|s1'
-991866207: 16258: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x837dfc0|s1'
-991866207: 16259: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377a80|s1'
-991866207: 16260: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f100|s1'
-991866207: 16261: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x837dfe0|s1'
-991866207: 16262: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381000|s1'
-991866207: 16263: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381020|s1'
-991866207: 16264: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381040|s1'
-991866207: 16265: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381060|s1'
-991866207: 16266: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377ac0|s1'
-991866207: 16267: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8381080|s1'
-991866207: 16268: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83810a0|s1'
-991866207: 16269: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83810c0|s1'
-991866207: 16270: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83810e0|s1'
-991866207: 16271: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8381100|s1'
-991866207: 16272: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8381120|s1'
-991866207: 16273: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f180|s1'
-991866207: 16274: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x8381140|s1'
-991866207: 16275: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x8381160|s1'
-991866207: 16276: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8381180|s1'
-991866207: 16277: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83811a0|s1'
-991866207: 16278: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f200|s1'
-991866207: 16279: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83811c0|s1'
-991866207: 16280: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83811e0|s1'
-991866207: 16281: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f280|s1'
-991866207: 16282: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8381200|s1'
-991866207: 16283: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8381220|s1'
-991866207: 16284: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381240|s1'
-991866207: 16285: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377b00|s1'
-991866207: 16286: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f300|s1'
-991866207: 16287: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381260|s1'
-991866207: 16288: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381280|s1'
-991866207: 16289: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83812a0|s1'
-991866207: 16290: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83812c0|s1'
-991866207: 16291: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83812e0|s1'
-991866207: 16292: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377b40|s1'
-991866207: 16293: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8381300|s1'
-991866207: 16294: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381320|s1'
-991866207: 16295: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381340|s1'
-991866207: 16296: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381360|s1'
-991866207: 16297: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f380|s1'
-991866207: 16298: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8381380|s1'
-991866207: 16299: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f400|s1'
-991866207: 16300: checking heap
-991866207: 16300: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83813a0|s1'
-991866207: 16301: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83813c0|s1'
-991866207: 16302: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83813e0|s1'
-991866207: 16303: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8381400|s1'
-991866207: 16304: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8381420|s1'
-991866207: 16305: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8381440|s1'
-991866207: 16306: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381460|s1'
-991866207: 16307: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377b80|s1'
-991866207: 16308: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f480|s1'
-991866207: 16309: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381480|s1'
-991866207: 16310: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83814a0|s1'
-991866207: 16311: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83814c0|s1'
-991866207: 16312: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83814e0|s1'
-991866207: 16313: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381500|s1'
-991866207: 16314: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377bc0|s1'
-991866207: 16315: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8381520|s1'
-991866207: 16316: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381540|s1'
-991866207: 16317: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381560|s1'
-991866207: 16318: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381580|s1'
-991866207: 16319: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f500|s1'
-991866207: 16320: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83815a0|s1'
-991866207: 16321: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f580|s1'
-991866207: 16322: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83815c0|s1'
-991866207: 16323: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83815e0|s1'
-991866207: 16324: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8381600|s1'
-991866207: 16325: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8381620|s1'
-991866207: 16326: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8381640|s1'
-991866207: 16327: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8381660|s1'
-991866207: 16328: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381680|s1'
-991866207: 16329: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377c00|s1'
-991866207: 16330: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f600|s1'
-991866207: 16331: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83816a0|s1'
-991866207: 16332: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83816c0|s1'
-991866207: 16333: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83816e0|s1'
-991866207: 16334: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381700|s1'
-991866207: 16335: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381720|s1'
-991866207: 16336: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377c40|s1'
-991866207: 16337: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8381740|s1'
-991866207: 16338: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381760|s1'
-991866207: 16339: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381780|s1'
-991866207: 16340: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83817a0|s1'
-991866207: 16341: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83817c0|s1'
-991866207: 16342: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83817e0|s1'
-991866207: 16343: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377c80|s1'
-991866207: 16344: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f680|s1'
-991866207: 16345: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381800|s1'
-991866207: 16346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381820|s1'
-991866207: 16347: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381840|s1'
-991866207: 16348: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381860|s1'
-991866207: 16349: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381880|s1'
-991866207: 16350: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83818a0|s1'
-991866207: 16351: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83818c0|s1'
-991866207: 16352: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83818e0|s1'
-991866207: 16353: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381900|s1'
-991866207: 16354: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377cc0|s1'
-991866207: 16355: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8381920|s1'
-991866207: 16356: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381940|s1'
-991866207: 16357: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381960|s1'
-991866207: 16358: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381980|s1'
-991866207: 16359: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83819a0|s1'
-991866207: 16360: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83819c0|s1'
-991866207: 16361: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377d00|s1'
-991866207: 16362: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f700|s1'
-991866207: 16363: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83819e0|s1'
-991866207: 16364: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381a00|s1'
-991866207: 16365: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381a20|s1'
-991866207: 16366: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381a40|s1'
-991866207: 16367: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381a60|s1'
-991866207: 16368: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377d40|s1'
-991866207: 16369: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8381a80|s1'
-991866207: 16370: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381aa0|s1'
-991866207: 16371: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381ac0|s1'
-991866207: 16372: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381ae0|s1'
-991866207: 16373: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8381b00|s1'
-991866207: 16374: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381b20|s1'
-991866207: 16375: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377d80|s1'
-991866207: 16376: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f780|s1'
-991866207: 16377: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381b40|s1'
-991866207: 16378: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381b60|s1'
-991866207: 16379: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381b80|s1'
-991866207: 16380: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381ba0|s1'
-991866207: 16381: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381bc0|s1'
-991866207: 16382: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377dc0|s1'
-991866207: 16383: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8381be0|s1'
-991866207: 16384: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381c00|s1'
-991866207: 16385: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381c20|s1'
-991866207: 16386: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381c40|s1'
-991866207: 16387: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f800|s1'
-991866207: 16388: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8381c60|s1'
-991866207: 16389: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f880|s1'
-991866207: 16390: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8381c80|s1'
-991866207: 16391: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8381ca0|s1'
-991866207: 16392: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8381cc0|s1'
-991866207: 16393: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8381ce0|s1'
-991866207: 16394: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8381d00|s1'
-991866207: 16395: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8381d20|s1'
-991866207: 16396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381d40|s1'
-991866207: 16397: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377e00|s1'
-991866207: 16398: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f900|s1'
-991866207: 16399: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381d60|s1'
-991866207: 16400: checking heap
-991866207: 16400: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381d80|s1'
-991866207: 16401: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381da0|s1'
-991866207: 16402: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381dc0|s1'
-991866207: 16403: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381de0|s1'
-991866207: 16404: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377e40|s1'
-991866207: 16405: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8381e00|s1'
-991866207: 16406: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381e20|s1'
-991866207: 16407: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381e40|s1'
-991866207: 16408: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381e60|s1'
-991866207: 16409: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8381e80|s1'
-991866207: 16410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381ea0|s1'
-991866207: 16411: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377e80|s1'
-991866207: 16412: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837f980|s1'
-991866207: 16413: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381ec0|s1'
-991866207: 16414: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381ee0|s1'
-991866207: 16415: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8381f00|s1'
-991866207: 16416: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8381f20|s1'
-991866207: 16417: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8381f40|s1'
-991866207: 16418: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377ec0|s1'
-991866207: 16419: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8381f60|s1'
-991866207: 16420: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8381f80|s1'
-991866207: 16421: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8381fa0|s1'
-991866207: 16422: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8381fc0|s1'
-991866207: 16423: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8381fe0|s1'
-991866207: 16424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383000|s1'
-991866207: 16425: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377f00|s1'
-991866207: 16426: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fa00|s1'
-991866207: 16427: *** alloc: at 'uentry.c:4143' for 4 bytes, got '0x8383020|s1'
-991866207: 16428: *** alloc: at 'uentry.c:4144' for 12 bytes, got '0x8383040|s1'
-991866207: 16429: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x8383060|s1'
-991866207: 16430: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383080|s1'
-991866207: 16431: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83830a0|s1'
-991866207: 16432: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83830c0|s1'
-991866207: 16433: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fa80|s1'
-991866207: 16434: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83830e0|s1'
-991866207: 16435: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fb00|s1'
-991866207: 16436: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8383100|s1'
-991866207: 16437: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8383120|s1'
-991866207: 16438: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383140|s1'
-991866207: 16439: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8383160|s1'
-991866207: 16440: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383180|s1'
-991866207: 16441: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83831a0|s1'
-991866207: 16442: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83831c0|s1'
-991866207: 16443: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377f40|s1'
-991866207: 16444: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fb80|s1'
-991866207: 16445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83831e0|s1'
-991866207: 16446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383200|s1'
-991866207: 16447: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383220|s1'
-991866207: 16448: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383240|s1'
-991866207: 16449: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383260|s1'
-991866207: 16450: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8377f80|s1'
-991866207: 16451: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8383280|s1'
-991866207: 16452: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83832a0|s1'
-991866207: 16453: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83832c0|s1'
-991866207: 16454: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83832e0|s1'
-991866207: 16455: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8383300|s1'
-991866207: 16456: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383320|s1'
-991866207: 16457: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8377fc0|s1'
-991866207: 16458: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fc00|s1'
-991866207: 16459: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383340|s1'
-991866207: 16460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383360|s1'
-991866207: 16461: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383380|s1'
-991866207: 16462: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83833a0|s1'
-991866207: 16463: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83833c0|s1'
-991866207: 16464: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385000|s1'
-991866207: 16465: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83833e0|s1'
-991866207: 16466: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383400|s1'
-991866207: 16467: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8383420|s1'
-991866207: 16468: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8383440|s1'
-991866207: 16469: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fc80|s1'
-991866207: 16470: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8383460|s1'
-991866207: 16471: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fd00|s1'
-991866207: 16472: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8383480|s1'
-991866207: 16473: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83834a0|s1'
-991866207: 16474: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83834c0|s1'
-991866207: 16475: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83834e0|s1'
-991866207: 16476: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383500|s1'
-991866207: 16477: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383520|s1'
-991866207: 16478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383540|s1'
-991866207: 16479: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385040|s1'
-991866207: 16480: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fd80|s1'
-991866207: 16481: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383560|s1'
-991866207: 16482: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383580|s1'
-991866207: 16483: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83835a0|s1'
-991866207: 16484: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83835c0|s1'
-991866207: 16485: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83835e0|s1'
-991866207: 16486: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385080|s1'
-991866207: 16487: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383600|s1'
-991866207: 16488: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383620|s1'
-991866207: 16489: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8383640|s1'
-991866207: 16490: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8383660|s1'
-991866207: 16491: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383680|s1'
-991866207: 16492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83836a0|s1'
-991866207: 16493: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83850c0|s1'
-991866207: 16494: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fe00|s1'
-991866207: 16495: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83836c0|s1'
-991866207: 16496: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83836e0|s1'
-991866207: 16497: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383700|s1'
-991866207: 16498: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383720|s1'
-991866207: 16499: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383740|s1'
-991866207: 16500: checking heap
-991866207: 16500: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385100|s1'
-991866207: 16501: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383760|s1'
-991866207: 16502: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383780|s1'
-991866207: 16503: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837fe80|s1'
-991866207: 16504: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83837a0|s1'
-991866207: 16505: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837ff00|s1'
-991866207: 16506: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83837c0|s1'
-991866207: 16507: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83837e0|s1'
-991866207: 16508: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383800|s1'
-991866207: 16509: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8383820|s1'
-991866207: 16510: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383840|s1'
-991866207: 16511: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383860|s1'
-991866207: 16512: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383880|s1'
-991866207: 16513: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385140|s1'
-991866207: 16514: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x837ff80|s1'
-991866207: 16515: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83838a0|s1'
-991866207: 16516: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83838c0|s1'
-991866207: 16517: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83838e0|s1'
-991866207: 16518: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383900|s1'
-991866207: 16519: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383920|s1'
-991866207: 16520: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385180|s1'
-991866207: 16521: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383940|s1'
-991866207: 16522: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383960|s1'
-991866207: 16523: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8383980|s1'
-991866207: 16524: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83839a0|s1'
-991866207: 16525: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83839c0|s1'
-991866207: 16526: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83839e0|s1'
-991866207: 16527: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83851c0|s1'
-991866207: 16528: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386000|s1'
-991866207: 16529: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383a00|s1'
-991866207: 16530: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383a20|s1'
-991866207: 16531: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383a40|s1'
-991866207: 16532: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383a60|s1'
-991866207: 16533: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383a80|s1'
-991866207: 16534: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385200|s1'
-991866207: 16535: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383aa0|s1'
-991866207: 16536: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383ac0|s1'
-991866207: 16537: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383ae0|s1'
-991866207: 16538: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383b00|s1'
-991866207: 16539: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385240|s1'
-991866207: 16540: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386080|s1'
-991866207: 16541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383b20|s1'
-991866207: 16542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383b40|s1'
-991866207: 16543: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383b60|s1'
-991866207: 16544: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383b80|s1'
-991866207: 16545: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383ba0|s1'
-991866207: 16546: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385280|s1'
-991866207: 16547: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8383bc0|s1'
-991866207: 16548: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383be0|s1'
-991866207: 16549: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8383c00|s1'
-991866207: 16550: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8383c20|s1'
-991866207: 16551: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386100|s1'
-991866207: 16552: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8383c40|s1'
-991866207: 16553: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386180|s1'
-991866207: 16554: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8383c60|s1'
-991866207: 16555: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8383c80|s1'
-991866207: 16556: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383ca0|s1'
-991866207: 16557: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8383cc0|s1'
-991866207: 16558: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8383ce0|s1'
-991866207: 16559: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8383d00|s1'
-991866207: 16560: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383d20|s1'
-991866207: 16561: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83852c0|s1'
-991866207: 16562: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386200|s1'
-991866207: 16563: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383d40|s1'
-991866207: 16564: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383d60|s1'
-991866207: 16565: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383d80|s1'
-991866207: 16566: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383da0|s1'
-991866207: 16567: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383dc0|s1'
-991866207: 16568: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385300|s1'
-991866207: 16569: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x8383de0|s1'
-991866207: 16570: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383e00|s1'
-991866207: 16571: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8383e20|s1'
-991866207: 16572: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8383e40|s1'
-991866207: 16573: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8383e60|s1'
-991866207: 16574: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383e80|s1'
-991866207: 16575: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385340|s1'
-991866207: 16576: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386280|s1'
-991866207: 16577: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383ea0|s1'
-991866207: 16578: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383ec0|s1'
-991866207: 16579: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8383ee0|s1'
-991866207: 16580: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383f00|s1'
-991866207: 16581: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8383f20|s1'
-991866207: 16582: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385380|s1'
-991866207: 16583: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8383f40|s1'
-991866207: 16584: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8383f60|s1'
-991866207: 16585: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8383f80|s1'
-991866207: 16586: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8383fa0|s1'
-991866207: 16587: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8383fc0|s1'
-991866207: 16588: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8383fe0|s1'
-991866207: 16589: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83853c0|s1'
-991866207: 16590: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386300|s1'
-991866207: 16591: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388000|s1'
-991866207: 16592: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388020|s1'
-991866207: 16593: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388040|s1'
-991866207: 16594: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388060|s1'
-991866207: 16595: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388080|s1'
-991866207: 16596: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83880a0|s1'
-991866207: 16597: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83880c0|s1'
-991866207: 16598: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385400|s1'
-991866207: 16599: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83880e0|s1'
-991866207: 16600: checking heap
-991866207: 16600: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388100|s1'
-991866207: 16601: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8388120|s1'
-991866207: 16602: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8388140|s1'
-991866207: 16603: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386380|s1'
-991866207: 16604: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8388160|s1'
-991866207: 16605: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386400|s1'
-991866207: 16606: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8388180|s1'
-991866207: 16607: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83881a0|s1'
-991866207: 16608: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83881c0|s1'
-991866207: 16609: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83881e0|s1'
-991866207: 16610: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388200|s1'
-991866207: 16611: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8388220|s1'
-991866207: 16612: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388240|s1'
-991866207: 16613: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385440|s1'
-991866207: 16614: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386480|s1'
-991866207: 16615: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388260|s1'
-991866207: 16616: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388280|s1'
-991866207: 16617: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83882a0|s1'
-991866207: 16618: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83882c0|s1'
-991866207: 16619: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83882e0|s1'
-991866207: 16620: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385480|s1'
-991866207: 16621: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8388300|s1'
-991866207: 16622: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388320|s1'
-991866207: 16623: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8388340|s1'
-991866207: 16624: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8388360|s1'
-991866207: 16625: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386500|s1'
-991866207: 16626: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8388380|s1'
-991866207: 16627: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386580|s1'
-991866207: 16628: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83883a0|s1'
-991866207: 16629: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83883c0|s1'
-991866207: 16630: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83883e0|s1'
-991866207: 16631: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388400|s1'
-991866207: 16632: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388420|s1'
-991866207: 16633: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8388440|s1'
-991866207: 16634: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388460|s1'
-991866207: 16635: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83854c0|s1'
-991866207: 16636: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386600|s1'
-991866207: 16637: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388480|s1'
-991866207: 16638: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83884a0|s1'
-991866207: 16639: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83884c0|s1'
-991866207: 16640: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83884e0|s1'
-991866207: 16641: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388500|s1'
-991866207: 16642: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388520|s1'
-991866207: 16643: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388540|s1'
-991866207: 16644: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385500|s1'
-991866207: 16645: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8388560|s1'
-991866207: 16646: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388580|s1'
-991866207: 16647: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83885a0|s1'
-991866207: 16648: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83885c0|s1'
-991866207: 16649: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386680|s1'
-991866207: 16650: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83885e0|s1'
-991866207: 16651: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386700|s1'
-991866207: 16652: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8388600|s1'
-991866207: 16653: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388620|s1'
-991866207: 16654: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388640|s1'
-991866207: 16655: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388660|s1'
-991866207: 16656: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388680|s1'
-991866207: 16657: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83886a0|s1'
-991866207: 16658: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83886c0|s1'
-991866207: 16659: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385540|s1'
-991866207: 16660: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386780|s1'
-991866207: 16661: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83886e0|s1'
-991866207: 16662: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388700|s1'
-991866207: 16663: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388720|s1'
-991866207: 16664: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388740|s1'
-991866207: 16665: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388760|s1'
-991866207: 16666: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385580|s1'
-991866207: 16667: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8388780|s1'
-991866207: 16668: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83887a0|s1'
-991866207: 16669: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386800|s1'
-991866207: 16670: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83887c0|s1'
-991866207: 16671: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386880|s1'
-991866207: 16672: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83887e0|s1'
-991866207: 16673: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388800|s1'
-991866207: 16674: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388820|s1'
-991866207: 16675: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388840|s1'
-991866207: 16676: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388860|s1'
-991866207: 16677: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388880|s1'
-991866207: 16678: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83888a0|s1'
-991866207: 16679: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83855c0|s1'
-991866207: 16680: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386900|s1'
-991866207: 16681: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83888c0|s1'
-991866207: 16682: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83888e0|s1'
-991866207: 16683: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388900|s1'
-991866207: 16684: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388920|s1'
-991866207: 16685: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388940|s1'
-991866207: 16686: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385600|s1'
-991866207: 16687: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388960|s1'
-991866207: 16688: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388980|s1'
-991866207: 16689: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83889a0|s1'
-991866207: 16690: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83889c0|s1'
-991866207: 16691: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386980|s1'
-991866207: 16692: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83889e0|s1'
-991866207: 16693: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386a00|s1'
-991866207: 16694: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8388a00|s1'
-991866207: 16695: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388a20|s1'
-991866207: 16696: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388a40|s1'
-991866207: 16697: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8388a60|s1'
-991866207: 16698: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8388a80|s1'
-991866207: 16699: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388aa0|s1'
-991866207: 16700: checking heap
-991866207: 16700: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388ac0|s1'
-991866207: 16701: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385640|s1'
-991866207: 16702: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386a80|s1'
-991866207: 16703: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388ae0|s1'
-991866207: 16704: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388b00|s1'
-991866207: 16705: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388b20|s1'
-991866207: 16706: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388b40|s1'
-991866207: 16707: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388b60|s1'
-991866207: 16708: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385680|s1'
-991866207: 16709: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388b80|s1'
-991866207: 16710: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388ba0|s1'
-991866207: 16711: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8388bc0|s1'
-991866207: 16712: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8388be0|s1'
-991866207: 16713: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8388c00|s1'
-991866207: 16714: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388c20|s1'
-991866207: 16715: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83856c0|s1'
-991866207: 16716: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386b00|s1'
-991866207: 16717: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388c40|s1'
-991866207: 16718: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388c60|s1'
-991866207: 16719: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388c80|s1'
-991866207: 16720: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388ca0|s1'
-991866207: 16721: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388cc0|s1'
-991866207: 16722: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385700|s1'
-991866207: 16723: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8388ce0|s1'
-991866207: 16724: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388d00|s1'
-991866207: 16725: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8388d20|s1'
-991866207: 16726: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8388d40|s1'
-991866207: 16727: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388d60|s1'
-991866207: 16728: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388d80|s1'
-991866207: 16729: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385740|s1'
-991866207: 16730: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386b80|s1'
-991866207: 16731: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388da0|s1'
-991866207: 16732: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388dc0|s1'
-991866207: 16733: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388de0|s1'
-991866207: 16734: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388e00|s1'
-991866207: 16735: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388e20|s1'
-991866207: 16736: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388e40|s1'
-991866207: 16737: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388e60|s1'
-991866207: 16738: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385780|s1'
-991866207: 16739: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388e80|s1'
-991866207: 16740: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8388ea0|s1'
-991866207: 16741: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8388ec0|s1'
-991866207: 16742: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8388ee0|s1'
-991866207: 16743: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388f00|s1'
-991866207: 16744: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388f20|s1'
-991866207: 16745: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83857c0|s1'
-991866207: 16746: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386c00|s1'
-991866207: 16747: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388f40|s1'
-991866207: 16748: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388f60|s1'
-991866207: 16749: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8388f80|s1'
-991866207: 16750: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8388fa0|s1'
-991866207: 16751: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8388fc0|s1'
-991866207: 16752: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385800|s1'
-991866207: 16753: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8388fe0|s1'
-991866207: 16754: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838b000|s1'
-991866207: 16755: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386c80|s1'
-991866207: 16756: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x838b020|s1'
-991866207: 16757: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386d00|s1'
-991866207: 16758: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x838b040|s1'
-991866207: 16759: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b060|s1'
-991866207: 16760: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b080|s1'
-991866207: 16761: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b0a0|s1'
-991866207: 16762: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b0c0|s1'
-991866207: 16763: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x838b0e0|s1'
-991866207: 16764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b100|s1'
-991866207: 16765: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385840|s1'
-991866207: 16766: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386d80|s1'
-991866207: 16767: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b120|s1'
-991866207: 16768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b140|s1'
-991866207: 16769: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b160|s1'
-991866207: 16770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b180|s1'
-991866207: 16771: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838b1a0|s1'
-991866207: 16772: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385880|s1'
-991866207: 16773: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x838b1c0|s1'
-991866207: 16774: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838b1e0|s1'
-991866207: 16775: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838b200|s1'
-991866207: 16776: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838b220|s1'
-991866207: 16777: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386e00|s1'
-991866207: 16778: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x838b240|s1'
-991866207: 16779: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386e80|s1'
-991866207: 16780: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x838b260|s1'
-991866207: 16781: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b280|s1'
-991866207: 16782: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b2a0|s1'
-991866207: 16783: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b2c0|s1'
-991866207: 16784: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b2e0|s1'
-991866207: 16785: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838b300|s1'
-991866207: 16786: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b320|s1'
-991866207: 16787: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83858c0|s1'
-991866207: 16788: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386f00|s1'
-991866207: 16789: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b340|s1'
-991866207: 16790: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b360|s1'
-991866207: 16791: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b380|s1'
-991866207: 16792: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b3a0|s1'
-991866207: 16793: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838b3c0|s1'
-991866207: 16794: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385900|s1'
-991866207: 16795: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838b3e0|s1'
-991866207: 16796: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838b400|s1'
-991866207: 16797: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838b420|s1'
-991866207: 16798: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838b440|s1'
-991866207: 16799: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8386f80|s1'
-991866207: 16800: checking heap
-991866207: 16800: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x838b460|s1'
-991866207: 16801: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d000|s1'
-991866207: 16802: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x838b480|s1'
-991866207: 16803: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b4a0|s1'
-991866207: 16804: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b4c0|s1'
-991866207: 16805: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b4e0|s1'
-991866207: 16806: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b500|s1'
-991866207: 16807: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x838b520|s1'
-991866207: 16808: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b540|s1'
-991866207: 16809: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385940|s1'
-991866207: 16810: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d080|s1'
-991866207: 16811: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b560|s1'
-991866207: 16812: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b580|s1'
-991866207: 16813: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b5a0|s1'
-991866207: 16814: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b5c0|s1'
-991866207: 16815: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838b5e0|s1'
-991866207: 16816: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385980|s1'
-991866207: 16817: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x838b600|s1'
-991866207: 16818: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838b620|s1'
-991866207: 16819: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838b640|s1'
-991866207: 16820: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838b660|s1'
-991866207: 16821: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d100|s1'
-991866207: 16822: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838b680|s1'
-991866207: 16823: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838b6a0|s1'
-991866207: 16824: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b6c0|s1'
-991866207: 16825: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b6e0|s1'
-991866207: 16826: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d180|s1'
-991866207: 16827: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838b700|s1'
-991866207: 16828: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838b720|s1'
-991866207: 16829: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d200|s1'
-991866207: 16830: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838b740|s1'
-991866207: 16831: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838b760|s1'
-991866207: 16832: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b780|s1'
-991866207: 16833: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b7a0|s1'
-991866207: 16834: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d280|s1'
-991866207: 16835: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838b7c0|s1'
-991866207: 16836: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838b7e0|s1'
-991866207: 16837: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d300|s1'
-991866207: 16838: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x838b800|s1'
-991866207: 16839: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x838b820|s1'
-991866207: 16840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b840|s1'
-991866207: 16841: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83859c0|s1'
-991866207: 16842: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d380|s1'
-991866207: 16843: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b860|s1'
-991866207: 16844: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b880|s1'
-991866207: 16845: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838b8a0|s1'
-991866207: 16846: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838b8c0|s1'
-991866207: 16847: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838b8e0|s1'
-991866207: 16848: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385a00|s1'
-991866207: 16849: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x838b900|s1'
-991866207: 16850: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838b920|s1'
-991866207: 16851: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838b940|s1'
-991866207: 16852: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838b960|s1'
-991866207: 16853: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d400|s1'
-991866207: 16854: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838b980|s1'
-991866207: 16855: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838b9a0|s1'
-991866207: 16856: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838b9c0|s1'
-991866207: 16857: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838b9e0|s1'
-991866207: 16858: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d480|s1'
-991866207: 16859: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838ba00|s1'
-991866207: 16860: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838ba20|s1'
-991866207: 16861: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d500|s1'
-991866207: 16862: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838ba40|s1'
-991866207: 16863: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838ba60|s1'
-991866207: 16864: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x838ba80|s1'
-991866207: 16865: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x838baa0|s1'
-991866207: 16866: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d580|s1'
-991866207: 16867: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x838bac0|s1'
-991866207: 16868: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x838bae0|s1'
-991866207: 16869: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d600|s1'
-991866207: 16870: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x838bb00|s1'
-991866207: 16871: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x838bb20|s1'
-991866207: 16872: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bb40|s1'
-991866207: 16873: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385a40|s1'
-991866207: 16874: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d680|s1'
-991866207: 16875: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838bb60|s1'
-991866207: 16876: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bb80|s1'
-991866207: 16877: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838bba0|s1'
-991866207: 16878: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bbc0|s1'
-991866207: 16879: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838bbe0|s1'
-991866207: 16880: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385a80|s1'
-991866207: 16881: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x838bc00|s1'
-991866207: 16882: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838bc20|s1'
-991866207: 16883: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838bc40|s1'
-991866207: 16884: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838bc60|s1'
-991866207: 16885: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838bc80|s1'
-991866207: 16886: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bca0|s1'
-991866207: 16887: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385ac0|s1'
-991866207: 16888: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d700|s1'
-991866207: 16889: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bcc0|s1'
-991866207: 16890: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x838bce0|s1'
-991866207: 16891: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x838bd00|s1'
-991866207: 16892: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838bd20|s1'
-991866207: 16893: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838bd40|s1'
-991866207: 16894: *** alloc: at 'cstringTable.c:115' for 16 bytes, got '0x838bd60|s1'
-991866207: 16895: *** free: at 'cstringTable.c:122' pnt '0x8350360|s2': size 8, alloced at 'cstringTable.c:100'
-991866207: 16896: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x838bd80|s1'
-991866207: 16897: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bda0|s1'
-991866207: 16898: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385b00|s1'
-991866207: 16899: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d780|s1'
-991866207: 16900: checking heap
-991866207: 16900: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bdc0|s1'
-991866207: 16901: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x838bde0|s1'
-991866207: 16902: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x838be00|s1'
-991866207: 16903: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x838be20|s1'
-991866207: 16904: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838be40|s1'
-991866207: 16905: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838be60|s1'
-991866207: 16906: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838be80|s1'
-991866207: 16907: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838bea0|s1'
-991866207: 16908: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bec0|s1'
-991866207: 16909: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385b40|s1'
-991866207: 16910: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d800|s1'
-991866207: 16911: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838bee0|s1'
-991866207: 16912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bf00|s1'
-991866207: 16913: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838bf20|s1'
-991866207: 16914: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838bf40|s1'
-991866207: 16915: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8350360|s3'
-991866207: 16916: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385b80|s1'
-991866207: 16917: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838bf60|s1'
-991866207: 16918: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838bf80|s1'
-991866207: 16919: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838bfa0|s1'
-991866207: 16920: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838bfc0|s1'
-991866207: 16921: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838bfe0|s1'
-991866207: 16922: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f000|s1'
-991866207: 16923: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385bc0|s1'
-991866207: 16924: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d880|s1'
-991866207: 16925: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f020|s1'
-991866207: 16926: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f040|s1'
-991866207: 16927: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f060|s1'
-991866207: 16928: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f080|s1'
-991866207: 16929: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f0a0|s1'
-991866207: 16930: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385c00|s1'
-991866207: 16931: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f0c0|s1'
-991866207: 16932: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f0e0|s1'
-991866207: 16933: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838f100|s1'
-991866207: 16934: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838f120|s1'
-991866207: 16935: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f140|s1'
-991866207: 16936: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f160|s1'
-991866207: 16937: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385c40|s1'
-991866207: 16938: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d900|s1'
-991866207: 16939: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f180|s1'
-991866207: 16940: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f1a0|s1'
-991866207: 16941: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f1c0|s1'
-991866207: 16942: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f1e0|s1'
-991866207: 16943: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f200|s1'
-991866207: 16944: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385c80|s1'
-991866207: 16945: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f220|s1'
-991866207: 16946: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f240|s1'
-991866207: 16947: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838f260|s1'
-991866207: 16948: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838f280|s1'
-991866207: 16949: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f2a0|s1'
-991866207: 16950: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f2c0|s1'
-991866207: 16951: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385cc0|s1'
-991866207: 16952: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838d980|s1'
-991866207: 16953: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f2e0|s1'
-991866207: 16954: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f300|s1'
-991866207: 16955: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f320|s1'
-991866207: 16956: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f340|s1'
-991866207: 16957: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f360|s1'
-991866207: 16958: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385d00|s1'
-991866207: 16959: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f380|s1'
-991866207: 16960: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f3a0|s1'
-991866207: 16961: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838f3c0|s1'
-991866207: 16962: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838f3e0|s1'
-991866207: 16963: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f400|s1'
-991866207: 16964: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f420|s1'
-991866207: 16965: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385d40|s1'
-991866207: 16966: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838da00|s1'
-991866207: 16967: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f440|s1'
-991866207: 16968: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f460|s1'
-991866207: 16969: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f480|s1'
-991866207: 16970: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f4a0|s1'
-991866207: 16971: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f4c0|s1'
-991866207: 16972: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385d80|s1'
-991866207: 16973: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f4e0|s1'
-991866207: 16974: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f500|s1'
-991866207: 16975: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f520|s1'
-991866207: 16976: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f540|s1'
-991866207: 16977: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385dc0|s1'
-991866207: 16978: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838da80|s1'
-991866207: 16979: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f560|s1'
-991866207: 16980: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f580|s1'
-991866207: 16981: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f5a0|s1'
-991866207: 16982: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f5c0|s1'
-991866207: 16983: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f5e0|s1'
-991866207: 16984: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385e00|s1'
-991866207: 16985: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f600|s1'
-991866207: 16986: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f620|s1'
-991866207: 16987: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838f640|s1'
-991866207: 16988: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838f660|s1'
-991866207: 16989: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f680|s1'
-991866207: 16990: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f6a0|s1'
-991866207: 16991: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385e40|s1'
-991866207: 16992: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838db00|s1'
-991866207: 16993: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f6c0|s1'
-991866207: 16994: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f6e0|s1'
-991866207: 16995: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f700|s1'
-991866207: 16996: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f720|s1'
-991866207: 16997: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f740|s1'
-991866207: 16998: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385e80|s1'
-991866207: 16999: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f760|s1'
-991866207: 17000: checking heap
-991866207: 17000: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f780|s1'
-991866207: 17001: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838f7a0|s1'
-991866207: 17002: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838f7c0|s1'
-991866207: 17003: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f7e0|s1'
-991866207: 17004: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f800|s1'
-991866207: 17005: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385ec0|s1'
-991866207: 17006: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838db80|s1'
-991866207: 17007: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f820|s1'
-991866207: 17008: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f840|s1'
-991866207: 17009: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f860|s1'
-991866207: 17010: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f880|s1'
-991866207: 17011: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838f8a0|s1'
-991866207: 17012: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385f00|s1'
-991866207: 17013: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f8c0|s1'
-991866207: 17014: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838f8e0|s1'
-991866207: 17015: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838f900|s1'
-991866207: 17016: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838f920|s1'
-991866207: 17017: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838f940|s1'
-991866207: 17018: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f960|s1'
-991866207: 17019: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385f40|s1'
-991866207: 17020: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838dc00|s1'
-991866207: 17021: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f980|s1'
-991866207: 17022: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f9a0|s1'
-991866207: 17023: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838f9c0|s1'
-991866207: 17024: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838f9e0|s1'
-991866207: 17025: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838fa00|s1'
-991866207: 17026: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8385f80|s1'
-991866207: 17027: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838fa20|s1'
-991866207: 17028: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838fa40|s1'
-991866207: 17029: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838fa60|s1'
-991866207: 17030: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838fa80|s1'
-991866207: 17031: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838faa0|s1'
-991866207: 17032: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fac0|s1'
-991866207: 17033: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8385fc0|s1'
-991866207: 17034: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838dc80|s1'
-991866207: 17035: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838fae0|s1'
-991866207: 17036: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fb00|s1'
-991866207: 17037: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838fb20|s1'
-991866207: 17038: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fb40|s1'
-991866207: 17039: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838fb60|s1'
-991866207: 17040: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391000|s1'
-991866207: 17041: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838fb80|s1'
-991866207: 17042: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838fba0|s1'
-991866207: 17043: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838fbc0|s1'
-991866207: 17044: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838fbe0|s1'
-991866207: 17045: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838fc00|s1'
-991866207: 17046: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fc20|s1'
-991866207: 17047: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391040|s1'
-991866207: 17048: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838dd00|s1'
-991866207: 17049: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838fc40|s1'
-991866207: 17050: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fc60|s1'
-991866207: 17051: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838fc80|s1'
-991866207: 17052: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fca0|s1'
-991866207: 17053: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838fcc0|s1'
-991866207: 17054: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391080|s1'
-991866207: 17055: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x838fce0|s1'
-991866207: 17056: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838fd00|s1'
-991866207: 17057: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838fd20|s1'
-991866207: 17058: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838fd40|s1'
-991866207: 17059: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x838fd60|s1'
-991866207: 17060: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fd80|s1'
-991866207: 17061: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83910c0|s1'
-991866207: 17062: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838dd80|s1'
-991866207: 17063: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838fda0|s1'
-991866207: 17064: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fdc0|s1'
-991866207: 17065: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838fde0|s1'
-991866207: 17066: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fe00|s1'
-991866207: 17067: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838fe20|s1'
-991866207: 17068: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391100|s1'
-991866207: 17069: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x838fe40|s1'
-991866207: 17070: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838fe60|s1'
-991866207: 17071: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838fe80|s1'
-991866207: 17072: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x838fea0|s1'
-991866207: 17073: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x838fec0|s1'
-991866207: 17074: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838fee0|s1'
-991866207: 17075: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391140|s1'
-991866207: 17076: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838de00|s1'
-991866207: 17077: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838ff00|s1'
-991866207: 17078: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838ff20|s1'
-991866207: 17079: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x838ff40|s1'
-991866207: 17080: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x838ff60|s1'
-991866207: 17081: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x838ff80|s1'
-991866207: 17082: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391180|s1'
-991866207: 17083: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x838ffa0|s1'
-991866207: 17084: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x838ffc0|s1'
-991866207: 17085: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x838ffe0|s1'
-991866207: 17086: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393000|s1'
-991866207: 17087: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393020|s1'
-991866207: 17088: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393040|s1'
-991866207: 17089: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83911c0|s1'
-991866207: 17090: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838de80|s1'
-991866207: 17091: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393060|s1'
-991866207: 17092: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393080|s1'
-991866207: 17093: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83930a0|s1'
-991866207: 17094: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83930c0|s1'
-991866207: 17095: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83930e0|s1'
-991866207: 17096: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391200|s1'
-991866207: 17097: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393100|s1'
-991866207: 17098: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8393120|s1'
-991866207: 17099: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8393140|s1'
-991866207: 17100: checking heap
-991866207: 17100: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393160|s1'
-991866207: 17101: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393180|s1'
-991866207: 17102: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83931a0|s1'
-991866207: 17103: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391240|s1'
-991866207: 17104: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838df00|s1'
-991866207: 17105: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83931c0|s1'
-991866207: 17106: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83931e0|s1'
-991866207: 17107: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393200|s1'
-991866207: 17108: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393220|s1'
-991866207: 17109: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393240|s1'
-991866207: 17110: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391280|s1'
-991866207: 17111: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393260|s1'
-991866207: 17112: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8393280|s1'
-991866207: 17113: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83932a0|s1'
-991866207: 17114: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83932c0|s1'
-991866207: 17115: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83932e0|s1'
-991866207: 17116: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393300|s1'
-991866207: 17117: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83912c0|s1'
-991866207: 17118: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x838df80|s1'
-991866207: 17119: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393320|s1'
-991866207: 17120: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393340|s1'
-991866207: 17121: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393360|s1'
-991866207: 17122: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393380|s1'
-991866207: 17123: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83933a0|s1'
-991866207: 17124: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391300|s1'
-991866207: 17125: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83933c0|s1'
-991866207: 17126: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83933e0|s1'
-991866207: 17127: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8393400|s1'
-991866207: 17128: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393420|s1'
-991866207: 17129: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8393440|s1'
-991866207: 17130: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393460|s1'
-991866207: 17131: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391340|s1'
-991866207: 17132: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395000|s1'
-991866207: 17133: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393480|s1'
-991866207: 17134: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83934a0|s1'
-991866207: 17135: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83934c0|s1'
-991866207: 17136: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83934e0|s1'
-991866207: 17137: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393500|s1'
-991866207: 17138: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391380|s1'
-991866207: 17139: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8393520|s1'
-991866207: 17140: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8393540|s1'
-991866207: 17141: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8393560|s1'
-991866207: 17142: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393580|s1'
-991866207: 17143: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83935a0|s1'
-991866207: 17144: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83935c0|s1'
-991866207: 17145: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83913c0|s1'
-991866207: 17146: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395080|s1'
-991866207: 17147: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83935e0|s1'
-991866207: 17148: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393600|s1'
-991866207: 17149: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393620|s1'
-991866207: 17150: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393640|s1'
-991866207: 17151: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393660|s1'
-991866207: 17152: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391400|s1'
-991866207: 17153: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x8393680|s1'
-991866207: 17154: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83936a0|s1'
-991866207: 17155: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83936c0|s1'
-991866207: 17156: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83936e0|s1'
-991866207: 17157: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395100|s1'
-991866207: 17158: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8393700|s1'
-991866207: 17159: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395180|s1'
-991866207: 17160: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8393720|s1'
-991866207: 17161: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393740|s1'
-991866207: 17162: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393760|s1'
-991866207: 17163: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393780|s1'
-991866207: 17164: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83937a0|s1'
-991866207: 17165: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83937c0|s1'
-991866207: 17166: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83937e0|s1'
-991866207: 17167: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391440|s1'
-991866207: 17168: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395200|s1'
-991866207: 17169: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393800|s1'
-991866207: 17170: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393820|s1'
-991866207: 17171: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393840|s1'
-991866207: 17172: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393860|s1'
-991866207: 17173: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393880|s1'
-991866207: 17174: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391480|s1'
-991866207: 17175: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83938a0|s1'
-991866207: 17176: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83938c0|s1'
-991866207: 17177: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83938e0|s1'
-991866207: 17178: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393900|s1'
-991866207: 17179: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395280|s1'
-991866207: 17180: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8393920|s1'
-991866207: 17181: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395300|s1'
-991866207: 17182: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8393940|s1'
-991866207: 17183: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393960|s1'
-991866207: 17184: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393980|s1'
-991866207: 17185: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83939a0|s1'
-991866207: 17186: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83939c0|s1'
-991866207: 17187: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83939e0|s1'
-991866207: 17188: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393a00|s1'
-991866207: 17189: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83914c0|s1'
-991866207: 17190: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395380|s1'
-991866207: 17191: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393a20|s1'
-991866207: 17192: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393a40|s1'
-991866207: 17193: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393a60|s1'
-991866207: 17194: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393a80|s1'
-991866207: 17195: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393aa0|s1'
-991866207: 17196: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391500|s1'
-991866207: 17197: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8393ac0|s1'
-991866207: 17198: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8393ae0|s1'
-991866207: 17199: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8393b00|s1'
-991866207: 17200: checking heap
-991866207: 17200: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393b20|s1'
-991866207: 17201: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395400|s1'
-991866207: 17202: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8393b40|s1'
-991866207: 17203: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395480|s1'
-991866207: 17204: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8393b60|s1'
-991866207: 17205: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393b80|s1'
-991866207: 17206: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393ba0|s1'
-991866207: 17207: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393bc0|s1'
-991866207: 17208: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393be0|s1'
-991866207: 17209: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393c00|s1'
-991866207: 17210: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393c20|s1'
-991866207: 17211: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391540|s1'
-991866207: 17212: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395500|s1'
-991866207: 17213: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393c40|s1'
-991866207: 17214: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393c60|s1'
-991866207: 17215: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393c80|s1'
-991866207: 17216: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393ca0|s1'
-991866207: 17217: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393cc0|s1'
-991866207: 17218: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391580|s1'
-991866207: 17219: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393ce0|s1'
-991866207: 17220: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8393d00|s1'
-991866207: 17221: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8393d20|s1'
-991866207: 17222: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393d40|s1'
-991866207: 17223: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395580|s1'
-991866207: 17224: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8393d60|s1'
-991866207: 17225: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395600|s1'
-991866207: 17226: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8393d80|s1'
-991866207: 17227: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393da0|s1'
-991866207: 17228: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393dc0|s1'
-991866207: 17229: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393de0|s1'
-991866207: 17230: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393e00|s1'
-991866207: 17231: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393e20|s1'
-991866207: 17232: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393e40|s1'
-991866207: 17233: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83915c0|s1'
-991866207: 17234: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395680|s1'
-991866207: 17235: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393e60|s1'
-991866207: 17236: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393e80|s1'
-991866207: 17237: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8393ea0|s1'
-991866207: 17238: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8393ec0|s1'
-991866207: 17239: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8393ee0|s1'
-991866207: 17240: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391600|s1'
-991866207: 17241: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x8393f00|s1'
-991866207: 17242: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8393f20|s1'
-991866207: 17243: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8393f40|s1'
-991866207: 17244: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8393f60|s1'
-991866207: 17245: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395700|s1'
-991866207: 17246: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8393f80|s1'
-991866207: 17247: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395780|s1'
-991866207: 17248: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8393fa0|s1'
-991866207: 17249: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8393fc0|s1'
-991866207: 17250: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8393fe0|s1'
-991866207: 17251: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397000|s1'
-991866207: 17252: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397020|s1'
-991866207: 17253: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397040|s1'
-991866207: 17254: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397060|s1'
-991866207: 17255: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391640|s1'
-991866207: 17256: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395800|s1'
-991866207: 17257: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397080|s1'
-991866207: 17258: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83970a0|s1'
-991866207: 17259: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83970c0|s1'
-991866207: 17260: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83970e0|s1'
-991866207: 17261: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397100|s1'
-991866207: 17262: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391680|s1'
-991866207: 17263: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397120|s1'
-991866207: 17264: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397140|s1'
-991866207: 17265: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397160|s1'
-991866207: 17266: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8397180|s1'
-991866207: 17267: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395880|s1'
-991866207: 17268: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83971a0|s1'
-991866207: 17269: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395900|s1'
-991866207: 17270: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83971c0|s1'
-991866207: 17271: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83971e0|s1'
-991866207: 17272: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397200|s1'
-991866207: 17273: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397220|s1'
-991866207: 17274: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397240|s1'
-991866207: 17275: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397260|s1'
-991866207: 17276: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397280|s1'
-991866207: 17277: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83916c0|s1'
-991866207: 17278: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395980|s1'
-991866207: 17279: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83972a0|s1'
-991866207: 17280: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83972c0|s1'
-991866207: 17281: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83972e0|s1'
-991866207: 17282: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397300|s1'
-991866207: 17283: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397320|s1'
-991866207: 17284: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391700|s1'
-991866207: 17285: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397340|s1'
-991866207: 17286: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397360|s1'
-991866207: 17287: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395a00|s1'
-991866207: 17288: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x8397380|s1'
-991866207: 17289: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395a80|s1'
-991866207: 17290: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83973a0|s1'
-991866207: 17291: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83973c0|s1'
-991866207: 17292: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83973e0|s1'
-991866207: 17293: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397400|s1'
-991866207: 17294: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397420|s1'
-991866207: 17295: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397440|s1'
-991866207: 17296: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397460|s1'
-991866207: 17297: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391740|s1'
-991866207: 17298: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395b00|s1'
-991866207: 17299: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397480|s1'
-991866207: 17300: checking heap
-991866207: 17300: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83974a0|s1'
-991866207: 17301: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83974c0|s1'
-991866207: 17302: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83974e0|s1'
-991866207: 17303: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397500|s1'
-991866207: 17304: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391780|s1'
-991866207: 17305: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397520|s1'
-991866207: 17306: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397540|s1'
-991866207: 17307: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397560|s1'
-991866207: 17308: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8397580|s1'
-991866207: 17309: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395b80|s1'
-991866207: 17310: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83975a0|s1'
-991866207: 17311: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395c00|s1'
-991866207: 17312: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83975c0|s1'
-991866207: 17313: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83975e0|s1'
-991866207: 17314: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397600|s1'
-991866207: 17315: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397620|s1'
-991866207: 17316: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397640|s1'
-991866207: 17317: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397660|s1'
-991866207: 17318: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397680|s1'
-991866207: 17319: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83917c0|s1'
-991866207: 17320: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395c80|s1'
-991866207: 17321: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83976a0|s1'
-991866207: 17322: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83976c0|s1'
-991866207: 17323: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83976e0|s1'
-991866207: 17324: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397700|s1'
-991866207: 17325: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397720|s1'
-991866207: 17326: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391800|s1'
-991866207: 17327: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397740|s1'
-991866207: 17328: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397760|s1'
-991866207: 17329: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397780|s1'
-991866207: 17330: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83977a0|s1'
-991866207: 17331: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395d00|s1'
-991866207: 17332: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83977c0|s1'
-991866207: 17333: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395d80|s1'
-991866207: 17334: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83977e0|s1'
-991866207: 17335: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397800|s1'
-991866207: 17336: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397820|s1'
-991866207: 17337: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397840|s1'
-991866207: 17338: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397860|s1'
-991866207: 17339: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397880|s1'
-991866207: 17340: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83978a0|s1'
-991866207: 17341: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391840|s1'
-991866207: 17342: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395e00|s1'
-991866207: 17343: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83978c0|s1'
-991866207: 17344: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83978e0|s1'
-991866207: 17345: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397900|s1'
-991866207: 17346: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397920|s1'
-991866207: 17347: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397940|s1'
-991866207: 17348: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391880|s1'
-991866207: 17349: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397960|s1'
-991866207: 17350: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397980|s1'
-991866207: 17351: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83979a0|s1'
-991866207: 17352: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83979c0|s1'
-991866207: 17353: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395e80|s1'
-991866207: 17354: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83979e0|s1'
-991866207: 17355: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395f00|s1'
-991866207: 17356: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x8397a00|s1'
-991866207: 17357: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397a20|s1'
-991866207: 17358: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397a40|s1'
-991866207: 17359: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x8397a60|s1'
-991866207: 17360: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x8397a80|s1'
-991866207: 17361: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397aa0|s1'
-991866207: 17362: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397ac0|s1'
-991866207: 17363: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83918c0|s1'
-991866207: 17364: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8395f80|s1'
-991866207: 17365: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397ae0|s1'
-991866207: 17366: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397b00|s1'
-991866207: 17367: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397b20|s1'
-991866207: 17368: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397b40|s1'
-991866207: 17369: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397b60|s1'
-991866207: 17370: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391900|s1'
-991866207: 17371: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397b80|s1'
-991866207: 17372: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397ba0|s1'
-991866207: 17373: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397bc0|s1'
-991866207: 17374: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8397be0|s1'
-991866207: 17375: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397c00|s1'
-991866207: 17376: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397c20|s1'
-991866207: 17377: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391940|s1'
-991866207: 17378: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399000|s1'
-991866207: 17379: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397c40|s1'
-991866207: 17380: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397c60|s1'
-991866207: 17381: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397c80|s1'
-991866207: 17382: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397ca0|s1'
-991866207: 17383: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397cc0|s1'
-991866207: 17384: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391980|s1'
-991866207: 17385: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397ce0|s1'
-991866207: 17386: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397d00|s1'
-991866207: 17387: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397d20|s1'
-991866207: 17388: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8397d40|s1'
-991866207: 17389: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397d60|s1'
-991866207: 17390: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397d80|s1'
-991866207: 17391: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83919c0|s1'
-991866207: 17392: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399080|s1'
-991866207: 17393: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397da0|s1'
-991866207: 17394: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397dc0|s1'
-991866207: 17395: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397de0|s1'
-991866207: 17396: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397e00|s1'
-991866207: 17397: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397e20|s1'
-991866207: 17398: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391a00|s1'
-991866207: 17399: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x8397e40|s1'
-991866207: 17400: checking heap
-991866207: 17400: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397e60|s1'
-991866207: 17401: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397e80|s1'
-991866207: 17402: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x8397ea0|s1'
-991866207: 17403: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397ec0|s1'
-991866207: 17404: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397ee0|s1'
-991866207: 17405: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391a40|s1'
-991866207: 17406: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399100|s1'
-991866207: 17407: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397f00|s1'
-991866207: 17408: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397f20|s1'
-991866207: 17409: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x8397f40|s1'
-991866207: 17410: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x8397f60|s1'
-991866207: 17411: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x8397f80|s1'
-991866207: 17412: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391a80|s1'
-991866207: 17413: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x8397fa0|s1'
-991866207: 17414: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x8397fc0|s1'
-991866207: 17415: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x8397fe0|s1'
-991866207: 17416: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839b000|s1'
-991866207: 17417: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b020|s1'
-991866207: 17418: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b040|s1'
-991866207: 17419: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391ac0|s1'
-991866207: 17420: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399180|s1'
-991866207: 17421: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b060|s1'
-991866207: 17422: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b080|s1'
-991866207: 17423: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b0a0|s1'
-991866207: 17424: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b0c0|s1'
-991866207: 17425: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839b0e0|s1'
-991866207: 17426: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391b00|s1'
-991866207: 17427: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b100|s1'
-991866207: 17428: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839b120|s1'
-991866207: 17429: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839b140|s1'
-991866207: 17430: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839b160|s1'
-991866207: 17431: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399200|s1'
-991866207: 17432: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x839b180|s1'
-991866207: 17433: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399280|s1'
-991866207: 17434: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x839b1a0|s1'
-991866207: 17435: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839b1c0|s1'
-991866207: 17436: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839b1e0|s1'
-991866207: 17437: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839b200|s1'
-991866207: 17438: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839b220|s1'
-991866207: 17439: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b240|s1'
-991866207: 17440: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b260|s1'
-991866207: 17441: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391b40|s1'
-991866207: 17442: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399300|s1'
-991866207: 17443: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b280|s1'
-991866207: 17444: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b2a0|s1'
-991866207: 17445: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b2c0|s1'
-991866207: 17446: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b2e0|s1'
-991866207: 17447: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839b300|s1'
-991866207: 17448: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391b80|s1'
-991866207: 17449: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b320|s1'
-991866207: 17450: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839b340|s1'
-991866207: 17451: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839b360|s1'
-991866207: 17452: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839b380|s1'
-991866207: 17453: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839b3a0|s1'
-991866207: 17454: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b3c0|s1'
-991866207: 17455: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391bc0|s1'
-991866207: 17456: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399380|s1'
-991866207: 17457: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b3e0|s1'
-991866207: 17458: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b400|s1'
-991866207: 17459: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b420|s1'
-991866207: 17460: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b440|s1'
-991866207: 17461: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b460|s1'
-991866207: 17462: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b480|s1'
-991866207: 17463: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839b4a0|s1'
-991866207: 17464: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391c00|s1'
-991866207: 17465: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839b4c0|s1'
-991866207: 17466: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839b4e0|s1'
-991866207: 17467: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839b500|s1'
-991866207: 17468: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839b520|s1'
-991866207: 17469: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839b540|s1'
-991866207: 17470: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b560|s1'
-991866207: 17471: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391c40|s1'
-991866207: 17472: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399400|s1'
-991866207: 17473: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b580|s1'
-991866207: 17474: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b5a0|s1'
-991866207: 17475: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b5c0|s1'
-991866207: 17476: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b5e0|s1'
-991866207: 17477: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b600|s1'
-991866207: 17478: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b620|s1'
-991866207: 17479: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b640|s1'
-991866207: 17480: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b660|s1'
-991866207: 17481: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839b680|s1'
-991866207: 17482: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391c80|s1'
-991866207: 17483: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839b6a0|s1'
-991866207: 17484: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839b6c0|s1'
-991866207: 17485: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b6e0|s1'
-991866207: 17486: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b700|s1'
-991866207: 17487: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391cc0|s1'
-991866207: 17488: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399480|s1'
-991866207: 17489: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b720|s1'
-991866207: 17490: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b740|s1'
-991866207: 17491: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b760|s1'
-991866207: 17492: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b780|s1'
-991866207: 17493: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839b7a0|s1'
-991866207: 17494: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391d00|s1'
-991866207: 17495: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b7c0|s1'
-991866207: 17496: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839b7e0|s1'
-991866207: 17497: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839b800|s1'
-991866207: 17498: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839b820|s1'
-991866207: 17499: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b840|s1'
-991866207: 17500: checking heap
-991866207: 17500: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b860|s1'
-991866207: 17501: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391d40|s1'
-991866207: 17502: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399500|s1'
-991866207: 17503: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b880|s1'
-991866207: 17504: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b8a0|s1'
-991866207: 17505: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b8c0|s1'
-991866207: 17506: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b8e0|s1'
-991866207: 17507: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b900|s1'
-991866207: 17508: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b920|s1'
-991866207: 17509: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839b940|s1'
-991866207: 17510: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839b960|s1'
-991866207: 17511: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839b980|s1'
-991866207: 17512: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391d80|s1'
-991866207: 17513: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839b9a0|s1'
-991866207: 17514: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839b9c0|s1'
-991866207: 17515: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839b9e0|s1'
-991866207: 17516: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839ba00|s1'
-991866207: 17517: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839ba20|s1'
-991866207: 17518: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839ba40|s1'
-991866207: 17519: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391dc0|s1'
-991866207: 17520: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399580|s1'
-991866207: 17521: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839ba60|s1'
-991866207: 17522: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839ba80|s1'
-991866207: 17523: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839baa0|s1'
-991866207: 17524: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bac0|s1'
-991866207: 17525: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839bae0|s1'
-991866207: 17526: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bb00|s1'
-991866207: 17527: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839bb20|s1'
-991866207: 17528: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bb40|s1'
-991866207: 17529: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839bb60|s1'
-991866207: 17530: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391e00|s1'
-991866207: 17531: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839bb80|s1'
-991866207: 17532: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839bba0|s1'
-991866207: 17533: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839bbc0|s1'
-991866207: 17534: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839bbe0|s1'
-991866207: 17535: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839bc00|s1'
-991866207: 17536: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bc20|s1'
-991866207: 17537: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391e40|s1'
-991866207: 17538: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399600|s1'
-991866207: 17539: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839bc40|s1'
-991866207: 17540: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bc60|s1'
-991866207: 17541: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839bc80|s1'
-991866207: 17542: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bca0|s1'
-991866207: 17543: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839bcc0|s1'
-991866207: 17544: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391e80|s1'
-991866207: 17545: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839bce0|s1'
-991866207: 17546: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839bd00|s1'
-991866207: 17547: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839bd20|s1'
-991866207: 17548: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839bd40|s1'
-991866207: 17549: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839bd60|s1'
-991866207: 17550: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bd80|s1'
-991866207: 17551: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391ec0|s1'
-991866207: 17552: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399680|s1'
-991866207: 17553: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839bda0|s1'
-991866207: 17554: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839bdc0|s1'
-991866207: 17555: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839bde0|s1'
-991866207: 17556: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839be00|s1'
-991866207: 17557: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839be20|s1'
-991866207: 17558: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839be40|s1'
-991866207: 17559: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839be60|s1'
-991866207: 17560: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839be80|s1'
-991866207: 17561: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839bea0|s1'
-991866207: 17562: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391f00|s1'
-991866207: 17563: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839bec0|s1'
-991866207: 17564: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839bee0|s1'
-991866207: 17565: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839bf00|s1'
-991866207: 17566: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839bf20|s1'
-991866207: 17567: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839bf40|s1'
-991866207: 17568: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839bf60|s1'
-991866207: 17569: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399700|s1'
-991866207: 17570: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x839bf80|s1'
-991866207: 17571: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x839bfa0|s1'
-991866207: 17572: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399780|s1'
-991866207: 17573: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x839bfc0|s1'
-991866207: 17574: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399800|s1'
-991866207: 17575: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x839bfe0|s1'
-991866207: 17576: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839d000|s1'
-991866207: 17577: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839d020|s1'
-991866207: 17578: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839d040|s1'
-991866207: 17579: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839d060|s1'
-991866207: 17580: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399880|s1'
-991866207: 17581: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x839d080|s1'
-991866207: 17582: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x839d0a0|s1'
-991866207: 17583: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839d0c0|s1'
-991866207: 17584: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d0e0|s1'
-991866207: 17585: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391f40|s1'
-991866207: 17586: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399900|s1'
-991866207: 17587: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d100|s1'
-991866207: 17588: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d120|s1'
-991866207: 17589: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d140|s1'
-991866207: 17590: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d160|s1'
-991866207: 17591: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d180|s1'
-991866207: 17592: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d1a0|s1'
-991866207: 17593: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d1c0|s1'
-991866207: 17594: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d1e0|s1'
-991866207: 17595: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839d200|s1'
-991866207: 17596: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x8391f80|s1'
-991866207: 17597: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839d220|s1'
-991866207: 17598: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839d240|s1'
-991866207: 17599: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839d260|s1'
-991866207: 17600: checking heap
-991866207: 17600: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839d280|s1'
-991866207: 17601: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399980|s1'
-991866207: 17602: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x839d2a0|s1'
-991866207: 17603: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399a00|s1'
-991866207: 17604: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x839d2c0|s1'
-991866207: 17605: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839d2e0|s1'
-991866207: 17606: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839d300|s1'
-991866207: 17607: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839d320|s1'
-991866207: 17608: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839d340|s1'
-991866207: 17609: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839d360|s1'
-991866207: 17610: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d380|s1'
-991866207: 17611: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x8391fc0|s1'
-991866207: 17612: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399a80|s1'
-991866207: 17613: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d3a0|s1'
-991866207: 17614: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d3c0|s1'
-991866207: 17615: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d3e0|s1'
-991866207: 17616: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d400|s1'
-991866207: 17617: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839d420|s1'
-991866207: 17618: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f000|s1'
-991866207: 17619: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839d440|s1'
-991866207: 17620: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839d460|s1'
-991866207: 17621: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839d480|s1'
-991866207: 17622: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839d4a0|s1'
-991866207: 17623: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x839d4c0|s1'
-991866207: 17624: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d4e0|s1'
-991866207: 17625: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f040|s1'
-991866207: 17626: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399b00|s1'
-991866207: 17627: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d500|s1'
-991866207: 17628: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d520|s1'
-991866207: 17629: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d540|s1'
-991866207: 17630: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d560|s1'
-991866207: 17631: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d580|s1'
-991866207: 17632: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d5a0|s1'
-991866207: 17633: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d5c0|s1'
-991866207: 17634: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d5e0|s1'
-991866207: 17635: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839d600|s1'
-991866207: 17636: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f080|s1'
-991866207: 17637: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x839d620|s1'
-991866207: 17638: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839d640|s1'
-991866207: 17639: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839d660|s1'
-991866207: 17640: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839d680|s1'
-991866207: 17641: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839d6a0|s1'
-991866207: 17642: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d6c0|s1'
-991866207: 17643: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f0c0|s1'
-991866207: 17644: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399b80|s1'
-991866207: 17645: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d6e0|s1'
-991866207: 17646: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d700|s1'
-991866207: 17647: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d720|s1'
-991866207: 17648: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d740|s1'
-991866207: 17649: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839d760|s1'
-991866207: 17650: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f100|s1'
-991866207: 17651: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839d780|s1'
-991866207: 17652: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839d7a0|s1'
-991866207: 17653: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839d7c0|s1'
-991866207: 17654: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839d7e0|s1'
-991866207: 17655: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x839d800|s1'
-991866207: 17656: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d820|s1'
-991866207: 17657: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f140|s1'
-991866207: 17658: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399c00|s1'
-991866207: 17659: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839d840|s1'
-991866207: 17660: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d860|s1'
-991866207: 17661: *** alloc: at 'uentry.c:3819' for 4 bytes, got '0x839d880|s1'
-991866207: 17662: *** alloc: at 'uentry.c:3820' for 8 bytes, got '0x839d8a0|s1'
-991866207: 17663: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x839d8c0|s1'
-991866207: 17664: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839d8e0|s1'
-991866207: 17665: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839d900|s1'
-991866207: 17666: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839d920|s1'
-991866207: 17667: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839d940|s1'
-991866207: 17668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d960|s1'
-991866207: 17669: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f180|s1'
-991866207: 17670: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399c80|s1'
-991866207: 17671: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839d980|s1'
-991866207: 17672: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x839d9a0|s1'
-991866207: 17673: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x839d9c0|s1'
-991866207: 17674: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x839d9e0|s1'
-991866207: 17675: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839da00|s1'
-991866207: 17676: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839da20|s1'
-991866207: 17677: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839da40|s1'
-991866207: 17678: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839da60|s1'
-991866207: 17679: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839da80|s1'
-991866207: 17680: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f1c0|s1'
-991866207: 17681: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399d00|s1'
-991866207: 17682: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839daa0|s1'
-991866207: 17683: *** alloc: at 'uentry.c:3953' for 4 bytes, got '0x839dac0|s1'
-991866207: 17684: *** alloc: at 'uentry.c:3954' for 12 bytes, got '0x839dae0|s1'
-991866207: 17685: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839db00|s1'
-991866207: 17686: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839db20|s1'
-991866207: 17687: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839db40|s1'
-991866207: 17688: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839db60|s1'
-991866207: 17689: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x839db80|s1'
-991866207: 17690: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x839dba0|s1'
-991866207: 17691: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x839dbc0|s1'
-991866207: 17692: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dbe0|s1'
-991866207: 17693: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f200|s1'
-991866207: 17694: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399d80|s1'
-991866207: 17695: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839dc00|s1'
-991866207: 17696: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dc20|s1'
-991866207: 17697: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839dc40|s1'
-991866207: 17698: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dc60|s1'
-991866207: 17699: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839dc80|s1'
-991866207: 17700: checking heap
-991866207: 17700: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f240|s1'
-991866207: 17701: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x839dca0|s1'
-991866207: 17702: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839dcc0|s1'
-991866207: 17703: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839dce0|s1'
-991866207: 17704: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839dd00|s1'
-991866207: 17705: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x839dd20|s1'
-991866207: 17706: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dd40|s1'
-991866207: 17707: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f280|s1'
-991866207: 17708: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399e00|s1'
-991866207: 17709: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839dd60|s1'
-991866207: 17710: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dd80|s1'
-991866207: 17711: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839dda0|s1'
-991866207: 17712: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839ddc0|s1'
-991866207: 17713: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839dde0|s1'
-991866207: 17714: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f2c0|s1'
-991866207: 17715: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x839de00|s1'
-991866207: 17716: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839de20|s1'
-991866207: 17717: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839de40|s1'
-991866207: 17718: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839de60|s1'
-991866207: 17719: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839de80|s1'
-991866207: 17720: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dea0|s1'
-991866207: 17721: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f300|s1'
-991866207: 17722: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399e80|s1'
-991866207: 17723: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839dec0|s1'
-991866207: 17724: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839dee0|s1'
-991866207: 17725: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x839df00|s1'
-991866207: 17726: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x839df20|s1'
-991866207: 17727: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x839df40|s1'
-991866207: 17728: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f340|s1'
-991866207: 17729: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x839df60|s1'
-991866207: 17730: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x839df80|s1'
-991866207: 17731: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x839dfa0|s1'
-991866207: 17732: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x839dfc0|s1'
-991866207: 17733: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399f00|s1'
-991866207: 17734: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x839dfe0|s1'
-991866207: 17735: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8399f80|s1'
-991866207: 17736: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83a1000|s1'
-991866207: 17737: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1020|s1'
-991866207: 17738: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1040|s1'
-991866207: 17739: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1060|s1'
-991866207: 17740: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1080|s1'
-991866207: 17741: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83a10a0|s1'
-991866207: 17742: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a10c0|s1'
-991866207: 17743: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f380|s1'
-991866207: 17744: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3000|s1'
-991866207: 17745: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a10e0|s1'
-991866207: 17746: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1100|s1'
-991866207: 17747: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1120|s1'
-991866207: 17748: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1140|s1'
-991866207: 17749: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83a1160|s1'
-991866207: 17750: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f3c0|s1'
-991866207: 17751: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83a1180|s1'
-991866207: 17752: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83a11a0|s1'
-991866207: 17753: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3080|s1'
-991866207: 17754: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83a11c0|s1'
-991866207: 17755: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83a11e0|s1'
-991866207: 17756: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1200|s1'
-991866207: 17757: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1220|s1'
-991866207: 17758: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3100|s1'
-991866207: 17759: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83a1240|s1'
-991866207: 17760: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83a1260|s1'
-991866207: 17761: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1280|s1'
-991866207: 17762: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a12a0|s1'
-991866207: 17763: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83a12c0|s1'
-991866207: 17764: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a12e0|s1'
-991866207: 17765: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f400|s1'
-991866207: 17766: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3180|s1'
-991866207: 17767: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1300|s1'
-991866207: 17768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1320|s1'
-991866207: 17769: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1340|s1'
-991866207: 17770: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1360|s1'
-991866207: 17771: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1380|s1'
-991866207: 17772: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a13a0|s1'
-991866207: 17773: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a13c0|s1'
-991866207: 17774: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a13e0|s1'
-991866207: 17775: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83a1400|s1'
-991866207: 17776: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f440|s1'
-991866207: 17777: *** alloc: at 'ra=0x80e6889' for 8 bytes, got '0x83a1420|s1'
-991866207: 17778: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83a1440|s1'
-991866207: 17779: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83a1460|s1'
-991866207: 17780: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1480|s1'
-991866207: 17781: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f480|s1'
-991866207: 17782: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3200|s1'
-991866207: 17783: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a14a0|s1'
-991866207: 17784: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a14c0|s1'
-991866207: 17785: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a14e0|s1'
-991866207: 17786: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1500|s1'
-991866207: 17787: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1520|s1'
-991866207: 17788: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1540|s1'
-991866207: 17789: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1560|s1'
-991866207: 17790: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1580|s1'
-991866207: 17791: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83a15a0|s1'
-991866207: 17792: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f4c0|s1'
-991866207: 17793: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83a15c0|s1'
-991866207: 17794: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83a15e0|s1'
-991866207: 17795: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83a1600|s1'
-991866207: 17796: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83a1620|s1'
-991866207: 17797: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83a1640|s1'
-991866207: 17798: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1660|s1'
-991866207: 17799: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f500|s1'
-991866207: 17800: checking heap
-991866207: 17800: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3280|s1'
-991866207: 17801: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1680|s1'
-991866207: 17802: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a16a0|s1'
-991866207: 17803: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a16c0|s1'
-991866207: 17804: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a16e0|s1'
-991866207: 17805: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1700|s1'
-991866207: 17806: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1720|s1'
-991866207: 17807: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1740|s1'
-991866207: 17808: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1760|s1'
-991866207: 17809: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83a1780|s1'
-991866207: 17810: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f540|s1'
-991866207: 17811: *** alloc: at 'ra=0x80e6889' for 7 bytes, got '0x83a17a0|s1'
-991866207: 17812: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83a17c0|s1'
-991866207: 17813: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83a17e0|s1'
-991866207: 17814: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83a1800|s1'
-991866207: 17815: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3300|s1'
-991866207: 17816: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83a1820|s1'
-991866207: 17817: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83a1840|s1'
-991866207: 17818: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1860|s1'
-991866207: 17819: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1880|s1'
-991866207: 17820: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3380|s1'
-991866207: 17821: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83a18a0|s1'
-991866207: 17822: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83a18c0|s1'
-991866207: 17823: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a18e0|s1'
-991866207: 17824: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1900|s1'
-991866207: 17825: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x83a1920|s1'
-991866207: 17826: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1940|s1'
-991866207: 17827: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f580|s1'
-991866207: 17828: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3400|s1'
-991866207: 17829: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1960|s1'
-991866207: 17830: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1980|s1'
-991866207: 17831: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a19a0|s1'
-991866207: 17832: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a19c0|s1'
-991866207: 17833: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a19e0|s1'
-991866207: 17834: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1a00|s1'
-991866207: 17835: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1a20|s1'
-991866207: 17836: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1a40|s1'
-991866207: 17837: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83a1a60|s1'
-991866207: 17838: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f5c0|s1'
-991866207: 17839: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x83a1a80|s1'
-991866207: 17840: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83a1aa0|s1'
-991866207: 17841: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83a1ac0|s1'
-991866207: 17842: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83a1ae0|s1'
-991866207: 17843: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3480|s1'
-991866207: 17844: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83a1b00|s1'
-991866207: 17845: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3500|s1'
-991866207: 17846: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83a1b20|s1'
-991866207: 17847: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1b40|s1'
-991866207: 17848: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1b60|s1'
-991866207: 17849: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83a1b80|s1'
-991866207: 17850: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83a1ba0|s1'
-991866207: 17851: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1bc0|s1'
-991866207: 17852: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1be0|s1'
-991866207: 17853: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x839f600|s1'
-991866207: 17854: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3580|s1'
-991866207: 17855: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1c00|s1'
-991866207: 17856: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1c20|s1'
-991866207: 17857: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83a1c40|s1'
-991866207: 17858: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1c60|s1'
-991866207: 17859: *** alloc: at 'uentry.c:4081' for 4 bytes, got '0x83a1c80|s1'
-991866207: 17860: *** alloc: at 'uentry.c:4082' for 36 bytes, got '0x839f640|s1'
-991866207: 17861: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1ca0|s1'
-991866207: 17862: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83a1cc0|s1'
-991866207: 17863: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83a1ce0|s1'
-991866207: 17864: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83a1d00|s1'
-991866207: 17865: *** free: at 'usymtab.c:1876' pnt '0x822e000|s4': size 16385, alloced at 'ra=0x80e68d7'
-991866207: 17866: *** alloc: at 'ra=0x80e68d7' for 16385 bytes, got '0x83a4000|s1'
-991866207: 17867: *** alloc: at 'ra=0x80e68d7' for 257 bytes, got '0x822d200|s3'
-991866207: 17868: *** alloc: at 'ra=0x80e6889' for 10 bytes, got '0x83a1d20|s1'
-991866207: 17869: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83a1d40|s1'
-991866207: 17870: *** alloc: at 'ra=0x80e6889' for 5 bytes, got '0x83a1d60|s1'
-991866207: 17871: *** free: at 'context.c:634' pnt '0x822d200|s4': size 257, alloced at 'ra=0x80e68d7'
-991866207: 17872: *** free: at 'context.c:636' pnt '0x83a4000|s2': size 16385, alloced at 'ra=0x80e68d7'
-991866207: 17873: *** free: at 'ra=0x40092cd9' pnt '0x822d000|s4': size 364, alloced at 'ra=0x400932b1'
-991866207: 17874: *** free: at 'ra=0x80a28ed' pnt '0x8224e60|s2': size 9, alloced at 'ra=0x80e68d7'
-991866207: 17875: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83a1d80|s1'
-991866207: 17876: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83a1da0|s1'
-991866207: 17877: *** alloc: at 'ra=0x80a560f' for 840 bytes, got '0x8233000|s3'
-991866207: 17878: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83a1dc0|s1'
-991866207: 17879: *** alloc: at 'osd.c:203' for 39 bytes, got '0x839f680|s1'
-991866207: 17880: *** free: at 'ra=0x80a28ed' pnt '0x83a1dc0|s2': size 12, alloced at 'ra=0x80e6889'
-991866207: 17881: *** alloc: at 'ra=0x80e6889' for 39 bytes, got '0x839f6c0|s1'
-991866207: 17882: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d400|s1'
-991866207: 17883: *** alloc: at 'lsymbol.c:315' for 4096 bytes, got '0x83a9000|s1'
-991866207: 17884: *** alloc: at 'lsymbol.c:260' for 8192 bytes, got '0x83aa000|s1'
-991866207: 17885: *** alloc: at 'lsymbol.c:214' for 8192 bytes, got '0x822e000|s5'
-991866207: 17886: *** alloc: at 'lcltokentable.c:164' for 4096 bytes, got '0x83ac000|s1'
-991866207: 17887: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f700|s1'
-991866207: 17888: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f740|s1'
-991866207: 17889: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f780|s1'
-991866207: 17890: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f7c0|s1'
-991866207: 17891: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f800|s1'
-991866207: 17892: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f840|s1'
-991866207: 17893: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f880|s1'
-991866207: 17894: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f8c0|s1'
-991866207: 17895: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f900|s1'
-991866207: 17896: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f940|s1'
-991866207: 17897: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f980|s1'
-991866207: 17898: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839f9c0|s1'
-991866207: 17899: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fa00|s1'
-991866207: 17900: checking heap
-991866207: 17900: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fa40|s1'
-991866207: 17901: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fa80|s1'
-991866207: 17902: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fac0|s1'
-991866207: 17903: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fb00|s1'
-991866207: 17904: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fb40|s1'
-991866207: 17905: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fb80|s1'
-991866207: 17906: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fbc0|s1'
-991866207: 17907: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fc00|s1'
-991866207: 17908: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fc40|s1'
-991866207: 17909: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fc80|s1'
-991866207: 17910: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fcc0|s1'
-991866207: 17911: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fd00|s1'
-991866207: 17912: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fd40|s1'
-991866207: 17913: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fd80|s1'
-991866207: 17914: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fdc0|s1'
-991866207: 17915: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fe00|s1'
-991866207: 17916: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fe40|s1'
-991866207: 17917: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fe80|s1'
-991866207: 17918: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839fec0|s1'
-991866207: 17919: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839ff00|s1'
-991866207: 17920: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839ff40|s1'
-991866207: 17921: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839ff80|s1'
-991866207: 17922: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x839ffc0|s1'
-991866207: 17923: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230000|s1'
-991866207: 17924: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230040|s1'
-991866207: 17925: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230080|s1'
-991866207: 17926: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82300c0|s1'
-991866207: 17927: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230100|s1'
-991866207: 17928: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230140|s1'
-991866207: 17929: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230180|s1'
-991866207: 17930: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82301c0|s1'
-991866207: 17931: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230200|s1'
-991866207: 17932: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230240|s1'
-991866207: 17933: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230280|s1'
-991866207: 17934: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82302c0|s1'
-991866207: 17935: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230300|s1'
-991866207: 17936: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230340|s1'
-991866207: 17937: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230380|s1'
-991866207: 17938: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82303c0|s1'
-991866207: 17939: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230400|s1'
-991866207: 17940: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230440|s1'
-991866207: 17941: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230480|s1'
-991866207: 17942: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82304c0|s1'
-991866207: 17943: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230500|s1'
-991866207: 17944: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230540|s1'
-991866207: 17945: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230580|s1'
-991866207: 17946: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82305c0|s1'
-991866207: 17947: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230600|s1'
-991866207: 17948: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230640|s1'
-991866207: 17949: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230680|s1'
-991866207: 17950: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82306c0|s1'
-991866207: 17951: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230700|s1'
-991866207: 17952: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230740|s1'
-991866207: 17953: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230780|s1'
-991866207: 17954: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82307c0|s1'
-991866207: 17955: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230800|s1'
-991866207: 17956: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230840|s1'
-991866207: 17957: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230880|s1'
-991866207: 17958: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82308c0|s1'
-991866207: 17959: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230900|s1'
-991866207: 17960: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230940|s1'
-991866207: 17961: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230980|s1'
-991866207: 17962: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x82309c0|s1'
-991866207: 17963: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230a00|s1'
-991866207: 17964: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230a40|s1'
-991866207: 17965: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230a80|s1'
-991866207: 17966: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230ac0|s1'
-991866207: 17967: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230b00|s1'
-991866207: 17968: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230b40|s1'
-991866207: 17969: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230b80|s1'
-991866207: 17970: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230bc0|s1'
-991866207: 17971: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230c00|s1'
-991866207: 17972: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230c40|s1'
-991866207: 17973: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230c80|s1'
-991866207: 17974: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230cc0|s1'
-991866207: 17975: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230d00|s1'
-991866207: 17976: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230d40|s1'
-991866207: 17977: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230d80|s1'
-991866207: 17978: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230dc0|s1'
-991866207: 17979: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230e00|s1'
-991866207: 17980: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230e40|s1'
-991866207: 17981: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230e80|s1'
-991866207: 17982: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230ec0|s1'
-991866207: 17983: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230f00|s1'
-991866207: 17984: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230f40|s1'
-991866207: 17985: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230f80|s1'
-991866207: 17986: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x8230fc0|s1'
-991866207: 17987: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4000|s3'
-991866207: 17988: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4040|s1'
-991866207: 17989: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4080|s1'
-991866207: 17990: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a40c0|s1'
-991866207: 17991: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4100|s1'
-991866207: 17992: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4140|s1'
-991866207: 17993: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4180|s1'
-991866207: 17994: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a41c0|s1'
-991866207: 17995: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4200|s1'
-991866207: 17996: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4240|s1'
-991866207: 17997: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4280|s1'
-991866207: 17998: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a42c0|s1'
-991866207: 17999: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4300|s1'
-991866207: 18000: checking heap
-991866207: 18000: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4340|s1'
-991866207: 18001: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4380|s1'
-991866207: 18002: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a43c0|s1'
-991866207: 18003: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4400|s1'
-991866207: 18004: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4440|s1'
-991866207: 18005: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4480|s1'
-991866207: 18006: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a44c0|s1'
-991866207: 18007: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4500|s1'
-991866207: 18008: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4540|s1'
-991866207: 18009: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4580|s1'
-991866207: 18010: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a45c0|s1'
-991866207: 18011: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4600|s1'
-991866207: 18012: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4640|s1'
-991866207: 18013: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4680|s1'
-991866207: 18014: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a46c0|s1'
-991866207: 18015: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4700|s1'
-991866207: 18016: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4740|s1'
-991866207: 18017: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4780|s1'
-991866207: 18018: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a47c0|s1'
-991866207: 18019: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4800|s1'
-991866207: 18020: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4840|s1'
-991866207: 18021: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4880|s1'
-991866207: 18022: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a48c0|s1'
-991866207: 18023: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4900|s1'
-991866207: 18024: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4940|s1'
-991866207: 18025: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4980|s1'
-991866207: 18026: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a49c0|s1'
-991866207: 18027: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4a00|s1'
-991866207: 18028: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4a40|s1'
-991866207: 18029: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4a80|s1'
-991866207: 18030: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4ac0|s1'
-991866207: 18031: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4b00|s1'
-991866207: 18032: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4b40|s1'
-991866207: 18033: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4b80|s1'
-991866207: 18034: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4bc0|s1'
-991866207: 18035: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4c00|s1'
-991866207: 18036: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4c40|s1'
-991866207: 18037: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4c80|s1'
-991866207: 18038: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4cc0|s1'
-991866207: 18039: *** alloc: at 'lclsyntable.c:124' for 4096 bytes, got '0x8232000|s1'
-991866207: 18040: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d00|s1'
-991866207: 18041: *** free: at 'ltoken.c:320' pnt '0x83a4d00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18042: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d40|s1'
-991866207: 18043: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d80|s1'
-991866207: 18044: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4dc0|s1'
-991866207: 18045: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4e00|s1'
-991866207: 18046: *** free: at 'ltoken.c:320' pnt '0x83a4e00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18047: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a4e40|s1'
-991866207: 18048: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4e80|s1'
-991866207: 18049: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4ec0|s1'
-991866207: 18050: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4f00|s1'
-991866207: 18051: *** free: at 'ltoken.c:320' pnt '0x83a4f00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18052: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4f40|s1'
-991866207: 18053: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4f80|s1'
-991866207: 18054: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4fc0|s1'
-991866207: 18055: *** free: at 'ltoken.c:320' pnt '0x83a4fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18056: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5000|s1'
-991866207: 18057: *** free: at 'ltoken.c:320' pnt '0x83a5000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18058: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5040|s1'
-991866207: 18059: *** free: at 'ltoken.c:320' pnt '0x83a5040|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18060: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5080|s1'
-991866207: 18061: *** free: at 'ltoken.c:320' pnt '0x83a5080|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18062: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a50c0|s1'
-991866207: 18063: *** free: at 'ltoken.c:320' pnt '0x83a50c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18064: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5100|s1'
-991866207: 18065: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5140|s1'
-991866207: 18066: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5180|s1'
-991866207: 18067: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a51c0|s1'
-991866207: 18068: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5200|s1'
-991866207: 18069: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5240|s1'
-991866207: 18070: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5280|s1'
-991866207: 18071: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a52c0|s1'
-991866207: 18072: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5300|s1'
-991866207: 18073: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5340|s1'
-991866207: 18074: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5380|s1'
-991866207: 18075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a53c0|s1'
-991866207: 18076: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5400|s1'
-991866207: 18077: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5000|s3'
-991866207: 18078: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5440|s1'
-991866207: 18079: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5040|s3'
-991866207: 18080: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5480|s1'
-991866207: 18081: *** free: at 'ltoken.c:320' pnt '0x83a5480|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18082: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5080|s3'
-991866207: 18083: *** free: at 'ltoken.c:320' pnt '0x83a5080|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18084: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a50c0|s3'
-991866207: 18085: *** free: at 'ltoken.c:320' pnt '0x83a50c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18086: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a54c0|s1'
-991866207: 18087: *** free: at 'ltoken.c:320' pnt '0x83a54c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18088: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5500|s1'
-991866207: 18089: *** free: at 'ltoken.c:320' pnt '0x83a5500|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18090: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5540|s1'
-991866207: 18091: *** free: at 'ltoken.c:320' pnt '0x83a5540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18092: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5580|s1'
-991866207: 18093: *** free: at 'ltoken.c:320' pnt '0x83a5580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18094: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a55c0|s1'
-991866207: 18095: *** free: at 'ltoken.c:320' pnt '0x83a55c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18096: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5600|s1'
-991866207: 18097: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5640|s1'
-991866207: 18098: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5680|s1'
-991866207: 18099: *** free: at 'ltoken.c:320' pnt '0x83a5680|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18100: checking heap
-991866207: 18100: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a56c0|s1'
-991866207: 18101: *** free: at 'ltoken.c:320' pnt '0x83a56c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18102: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5480|s3'
-991866207: 18103: *** free: at 'ltoken.c:320' pnt '0x83a5480|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18104: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5080|s5'
-991866207: 18105: *** free: at 'ltoken.c:320' pnt '0x83a5080|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18106: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a50c0|s5'
-991866207: 18107: *** free: at 'ltoken.c:320' pnt '0x83a50c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18108: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a54c0|s3'
-991866207: 18109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5500|s3'
-991866207: 18110: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5700|s1'
-991866207: 18111: *** free: at 'ltoken.c:320' pnt '0x83a5700|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18112: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5540|s3'
-991866207: 18113: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5580|s3'
-991866207: 18114: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5740|s1'
-991866207: 18115: *** free: at 'ltoken.c:320' pnt '0x83a5740|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18116: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a55c0|s3'
-991866207: 18117: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s1'
-991866207: 18118: *** free: at 'ltoken.c:320' pnt '0x83a5780|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5680|s3'
-991866207: 18120: *** free: at 'ltoken.c:320' pnt '0x83a5680|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18121: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a56c0|s3'
-991866207: 18122: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a57c0|s1'
-991866207: 18123: *** free: at 'ltoken.c:320' pnt '0x83a57c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18124: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5480|s5'
-991866207: 18125: *** free: at 'ltoken.c:320' pnt '0x83a5480|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18126: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5080|s7'
-991866207: 18127: *** free: at 'ltoken.c:320' pnt '0x83a5080|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18128: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a50c0|s7'
-991866207: 18129: *** free: at 'ltoken.c:320' pnt '0x83a50c0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18130: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5800|s1'
-991866207: 18131: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5700|s3'
-991866207: 18132: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5840|s1'
-991866207: 18133: *** free: at 'ltoken.c:320' pnt '0x83a5840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18134: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5880|s1'
-991866207: 18135: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5740|s3'
-991866207: 18136: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a58c0|s1'
-991866207: 18137: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5900|s1'
-991866207: 18138: *** free: at 'ltoken.c:320' pnt '0x83a5900|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18139: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s3'
-991866207: 18140: *** free: at 'ltoken.c:320' pnt '0x83a5780|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18141: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5680|s5'
-991866207: 18142: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5940|s1'
-991866207: 18143: *** free: at 'ltoken.c:320' pnt '0x83a5940|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18144: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a57c0|s3'
-991866207: 18145: *** free: at 'ltoken.c:320' pnt '0x83a57c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18146: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5480|s7'
-991866207: 18147: *** free: at 'ltoken.c:320' pnt '0x83a5480|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18148: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5080|s9'
-991866207: 18149: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a50c0|s9'
-991866207: 18150: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5980|s1'
-991866207: 18151: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a59c0|s1'
-991866207: 18152: *** free: at 'ltoken.c:320' pnt '0x83a59c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18153: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5840|s3'
-991866207: 18154: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a00|s1'
-991866207: 18155: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s1'
-991866207: 18156: *** free: at 'ltoken.c:320' pnt '0x83a5a40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18157: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a80|s1'
-991866207: 18158: *** free: at 'ltoken.c:320' pnt '0x83a5a80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18159: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5900|s3'
-991866207: 18160: *** free: at 'ltoken.c:320' pnt '0x83a5900|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18161: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s5'
-991866207: 18162: *** free: at 'ltoken.c:320' pnt '0x83a5780|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18163: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5940|s3'
-991866207: 18164: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5ac0|s1'
-991866207: 18165: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a57c0|s5'
-991866207: 18166: *** free: at 'ltoken.c:320' pnt '0x83a57c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18167: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5480|s9'
-991866207: 18168: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5b00|s1'
-991866207: 18169: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5b40|s1'
-991866207: 18170: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5b80|s1'
-991866207: 18171: *** free: at 'ltoken.c:320' pnt '0x83a5b80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18172: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a59c0|s3'
-991866207: 18173: *** free: at 'ltoken.c:320' pnt '0x83a59c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18174: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5bc0|s1'
-991866207: 18175: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c00|s1'
-991866207: 18176: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s3'
-991866207: 18177: *** free: at 'ltoken.c:320' pnt '0x83a5a40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18178: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a80|s3'
-991866207: 18179: *** free: at 'ltoken.c:320' pnt '0x83a5a80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18180: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5900|s5'
-991866207: 18181: *** free: at 'ltoken.c:320' pnt '0x83a5900|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18182: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s7'
-991866207: 18183: *** free: at 'ltoken.c:320' pnt '0x83a5780|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18184: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c40|s1'
-991866207: 18185: *** free: at 'ltoken.c:320' pnt '0x83a5c40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18186: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a57c0|s7'
-991866207: 18187: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c80|s1'
-991866207: 18188: *** free: at 'ltoken.c:320' pnt '0x83a5c80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18189: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5cc0|s1'
-991866207: 18190: *** free: at 'ltoken.c:320' pnt '0x83a5cc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18191: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5b80|s3'
-991866207: 18192: *** free: at 'ltoken.c:320' pnt '0x83a5b80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18193: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a59c0|s5'
-991866207: 18194: *** free: at 'ltoken.c:320' pnt '0x83a59c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18195: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5d00|s1'
-991866207: 18196: *** free: at 'ltoken.c:320' pnt '0x83a5d00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18197: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s5'
-991866207: 18198: *** free: at 'ltoken.c:320' pnt '0x83a5a40|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18199: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a80|s5'
-991866207: 18200: checking heap
-991866207: 18200: *** free: at 'ltoken.c:320' pnt '0x83a5a80|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18201: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5900|s7'
-991866207: 18202: *** free: at 'ltoken.c:320' pnt '0x83a5900|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18203: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s9'
-991866207: 18204: *** free: at 'ltoken.c:320' pnt '0x83a5780|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18205: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5c40|s3'
-991866207: 18206: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5d40|s1'
-991866207: 18207: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5d80|s1'
-991866207: 18208: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c80|s3'
-991866207: 18209: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5dc0|s1'
-991866207: 18210: *** free: at 'ltoken.c:320' pnt '0x83a5dc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18211: *** free: at 'ltoken.c:320' pnt '0x83a5c80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18212: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5b80|s5'
-991866207: 18213: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5cc0|s3'
-991866207: 18214: *** free: at 'ltoken.c:320' pnt '0x83a5cc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18215: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a59c0|s7'
-991866207: 18216: *** free: at 'ltoken.c:320' pnt '0x83a59c0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18217: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5d00|s3'
-991866207: 18218: *** free: at 'ltoken.c:320' pnt '0x83a5d00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18219: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s7'
-991866207: 18220: *** free: at 'ltoken.c:320' pnt '0x83a5a40|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18221: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a80|s7'
-991866207: 18222: *** free: at 'ltoken.c:320' pnt '0x83a5a80|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18223: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5900|s9'
-991866207: 18224: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s11'
-991866207: 18225: *** free: at 'ltoken.c:320' pnt '0x83a5780|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18226: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e00|s1'
-991866207: 18227: *** free: at 'ltoken.c:320' pnt '0x83a5e00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18228: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e40|s1'
-991866207: 18229: *** free: at 'ltoken.c:320' pnt '0x83a5e40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18230: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5dc0|s3'
-991866207: 18231: *** free: at 'ltoken.c:320' pnt '0x83a5dc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18232: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c80|s5'
-991866207: 18233: *** free: at 'ltoken.c:320' pnt '0x83a5c80|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18234: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5cc0|s5'
-991866207: 18235: *** free: at 'ltoken.c:320' pnt '0x83a5cc0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18236: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a59c0|s9'
-991866207: 18237: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e80|s1'
-991866207: 18238: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5d00|s5'
-991866207: 18239: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5ec0|s1'
-991866207: 18240: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s9'
-991866207: 18241: *** free: at 'ltoken.c:320' pnt '0x83a5a40|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18242: *** free: at 'ltoken.c:320' pnt '0x83a5ec0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18243: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a80|s9'
-991866207: 18244: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5f00|s1'
-991866207: 18245: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s13'
-991866207: 18246: *** free: at 'ltoken.c:320' pnt '0x83a5780|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18247: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e00|s3'
-991866207: 18248: *** free: at 'ltoken.c:320' pnt '0x83a5e00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18249: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e40|s3'
-991866207: 18250: *** free: at 'ltoken.c:320' pnt '0x83a5e40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18251: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5dc0|s5'
-991866207: 18252: *** free: at 'ltoken.c:320' pnt '0x83a5dc0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18253: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c80|s7'
-991866207: 18254: *** free: at 'ltoken.c:320' pnt '0x83a5c80|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18255: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5cc0|s7'
-991866207: 18256: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5f40|s1'
-991866207: 18257: *** free: at 'ltoken.c:320' pnt '0x83a5f40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18258: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5f80|s1'
-991866207: 18259: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5fc0|s1'
-991866207: 18260: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4fc0|s3'
-991866207: 18261: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s11'
-991866207: 18262: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5ec0|s3'
-991866207: 18263: *** free: at 'ltoken.c:320' pnt '0x83a5ec0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18264: *** free: at 'ltoken.c:320' pnt '0x83a5a40|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18265: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4f00|s3'
-991866207: 18266: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5780|s15'
-991866207: 18267: *** free: at 'ltoken.c:320' pnt '0x83a5780|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18268: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e00|s5'
-991866207: 18269: *** free: at 'ltoken.c:320' pnt '0x83a5e00|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18270: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e40|s5'
-991866207: 18271: *** free: at 'ltoken.c:320' pnt '0x83a5e40|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18272: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5dc0|s7'
-991866207: 18273: *** free: at 'ltoken.c:320' pnt '0x83a5dc0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18274: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c80|s9'
-991866207: 18275: *** free: at 'ltoken.c:320' pnt '0x83a5c80|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18276: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4e00|s3'
-991866207: 18277: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5f40|s3'
-991866207: 18278: *** free: at 'ltoken.c:320' pnt '0x83a5f40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18279: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d00|s3'
-991866207: 18280: *** free: at 'ltoken.c:320' pnt '0x83a4d00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18281: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad000|s1'
-991866207: 18282: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad040|s1'
-991866207: 18283: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad080|s1'
-991866207: 18284: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad0c0|s1'
-991866207: 18285: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad100|s1'
-991866207: 18286: *** free: at 'ltoken.c:320' pnt '0x83ad100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18287: *** free: at 'ltoken.c:320' pnt '0x83ad0c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18288: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad140|s1'
-991866207: 18289: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad180|s1'
-991866207: 18290: *** free: at 'ltoken.c:320' pnt '0x83ad180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18291: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s1'
-991866207: 18292: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18293: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s1'
-991866207: 18294: *** free: at 'ltoken.c:320' pnt '0x83ad200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18295: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s1'
-991866207: 18296: *** free: at 'ltoken.c:320' pnt '0x83ad240|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18297: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s1'
-991866207: 18298: *** free: at 'ltoken.c:320' pnt '0x83ad280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18299: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad2c0|s1'
-991866207: 18300: checking heap
-991866207: 18300: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad300|s1'
-991866207: 18301: *** free: at 'ltoken.c:320' pnt '0x83ad300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18302: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad340|s1'
-991866207: 18303: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad380|s1'
-991866207: 18304: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad3c0|s1'
-991866207: 18305: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad400|s1'
-991866207: 18306: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad100|s3'
-991866207: 18307: *** free: at 'ltoken.c:320' pnt '0x83ad100|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18308: *** free: at 'ltoken.c:320' pnt '0x83ad400|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18309: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad0c0|s3'
-991866207: 18310: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad180|s3'
-991866207: 18311: *** free: at 'ltoken.c:320' pnt '0x83ad180|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18312: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s3'
-991866207: 18313: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18314: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s3'
-991866207: 18315: *** free: at 'ltoken.c:320' pnt '0x83ad200|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18316: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s3'
-991866207: 18317: *** free: at 'ltoken.c:320' pnt '0x83ad240|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18318: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s3'
-991866207: 18319: *** free: at 'ltoken.c:320' pnt '0x83ad280|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18320: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad440|s1'
-991866207: 18321: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad300|s3'
-991866207: 18322: *** free: at 'ltoken.c:320' pnt '0x83ad300|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18323: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad480|s1'
-991866207: 18324: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad4c0|s1'
-991866207: 18325: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad500|s1'
-991866207: 18326: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad540|s1'
-991866207: 18327: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad100|s5'
-991866207: 18328: *** free: at 'ltoken.c:320' pnt '0x83ad100|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18329: *** free: at 'ltoken.c:320' pnt '0x83ad540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18330: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad400|s3'
-991866207: 18331: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad180|s5'
-991866207: 18332: *** free: at 'ltoken.c:320' pnt '0x83ad180|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18333: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s5'
-991866207: 18334: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18335: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s5'
-991866207: 18336: *** free: at 'ltoken.c:320' pnt '0x83ad200|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18337: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s5'
-991866207: 18338: *** free: at 'ltoken.c:320' pnt '0x83ad240|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18339: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s5'
-991866207: 18340: *** free: at 'ltoken.c:320' pnt '0x83ad280|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18341: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad580|s1'
-991866207: 18342: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad300|s5'
-991866207: 18343: *** free: at 'ltoken.c:320' pnt '0x83ad300|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18344: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad5c0|s1'
-991866207: 18345: *** free: at 'ltoken.c:320' pnt '0x83ad5c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18346: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad600|s1'
-991866207: 18347: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad640|s1'
-991866207: 18348: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad100|s7'
-991866207: 18349: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad540|s3'
-991866207: 18350: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s1'
-991866207: 18351: *** free: at 'ltoken.c:320' pnt '0x83ad680|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18352: *** free: at 'ltoken.c:320' pnt '0x83ad540|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18353: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad180|s7'
-991866207: 18354: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s7'
-991866207: 18355: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18356: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s7'
-991866207: 18357: *** free: at 'ltoken.c:320' pnt '0x83ad200|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18358: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s7'
-991866207: 18359: *** free: at 'ltoken.c:320' pnt '0x83ad240|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18360: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s7'
-991866207: 18361: *** free: at 'ltoken.c:320' pnt '0x83ad280|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18362: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad6c0|s1'
-991866207: 18363: *** free: at 'ltoken.c:320' pnt '0x83ad6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18364: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad300|s7'
-991866207: 18365: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad5c0|s3'
-991866207: 18366: *** free: at 'ltoken.c:320' pnt '0x83ad5c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18367: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad700|s1'
-991866207: 18368: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad740|s1'
-991866207: 18369: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad780|s1'
-991866207: 18370: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad7c0|s1'
-991866207: 18371: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s3'
-991866207: 18372: *** free: at 'ltoken.c:320' pnt '0x83ad680|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18373: *** free: at 'ltoken.c:320' pnt '0x83ad7c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18374: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad540|s5'
-991866207: 18375: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s9'
-991866207: 18376: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18377: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s9'
-991866207: 18378: *** free: at 'ltoken.c:320' pnt '0x83ad200|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18379: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s9'
-991866207: 18380: *** free: at 'ltoken.c:320' pnt '0x83ad240|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18381: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s9'
-991866207: 18382: *** free: at 'ltoken.c:320' pnt '0x83ad280|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18383: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad6c0|s3'
-991866207: 18384: *** free: at 'ltoken.c:320' pnt '0x83ad6c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18385: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad800|s1'
-991866207: 18386: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad5c0|s5'
-991866207: 18387: *** free: at 'ltoken.c:320' pnt '0x83ad5c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18388: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad840|s1'
-991866207: 18389: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad880|s1'
-991866207: 18390: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad8c0|s1'
-991866207: 18391: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s1'
-991866207: 18392: *** free: at 'ltoken.c:320' pnt '0x83ad900|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18393: *** free: at 'ltoken.c:320' pnt '0x83ad8c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18394: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad7c0|s3'
-991866207: 18395: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s5'
-991866207: 18396: *** free: at 'ltoken.c:320' pnt '0x83ad680|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18397: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s11'
-991866207: 18398: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18399: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s11'
-991866207: 18400: checking heap
-991866207: 18400: *** free: at 'ltoken.c:320' pnt '0x83ad200|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18401: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s11'
-991866207: 18402: *** free: at 'ltoken.c:320' pnt '0x83ad240|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18403: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s11'
-991866207: 18404: *** free: at 'ltoken.c:320' pnt '0x83ad280|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18405: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad6c0|s5'
-991866207: 18406: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad940|s1'
-991866207: 18407: *** free: at 'ltoken.c:320' pnt '0x83ad940|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18408: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad5c0|s7'
-991866207: 18409: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad980|s1'
-991866207: 18410: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad9c0|s1'
-991866207: 18411: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ada00|s1'
-991866207: 18412: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s3'
-991866207: 18413: *** free: at 'ltoken.c:320' pnt '0x83ad900|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18414: *** free: at 'ltoken.c:320' pnt '0x83ada00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18415: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad8c0|s3'
-991866207: 18416: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s7'
-991866207: 18417: *** free: at 'ltoken.c:320' pnt '0x83ad680|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18418: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s13'
-991866207: 18419: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18420: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s13'
-991866207: 18421: *** free: at 'ltoken.c:320' pnt '0x83ad200|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18422: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s13'
-991866207: 18423: *** free: at 'ltoken.c:320' pnt '0x83ad240|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18424: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s13'
-991866207: 18425: *** free: at 'ltoken.c:320' pnt '0x83ad280|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18426: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ada40|s1'
-991866207: 18427: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad940|s3'
-991866207: 18428: *** free: at 'ltoken.c:320' pnt '0x83ad940|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18429: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ada80|s1'
-991866207: 18430: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adac0|s1'
-991866207: 18431: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb00|s1'
-991866207: 18432: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s1'
-991866207: 18433: *** free: at 'ltoken.c:320' pnt '0x83adb40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18434: *** free: at 'ltoken.c:320' pnt '0x83adb00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18435: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ada00|s3'
-991866207: 18436: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s5'
-991866207: 18437: *** free: at 'ltoken.c:320' pnt '0x83ad900|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18438: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s9'
-991866207: 18439: *** free: at 'ltoken.c:320' pnt '0x83ad680|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18440: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s15'
-991866207: 18441: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18442: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s15'
-991866207: 18443: *** free: at 'ltoken.c:320' pnt '0x83ad200|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18444: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s15'
-991866207: 18445: *** free: at 'ltoken.c:320' pnt '0x83ad240|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18446: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad280|s15'
-991866207: 18447: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb80|s1'
-991866207: 18448: *** free: at 'ltoken.c:320' pnt '0x83adb80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18449: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad940|s5'
-991866207: 18450: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adbc0|s1'
-991866207: 18451: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adc00|s1'
-991866207: 18452: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adc40|s1'
-991866207: 18453: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s3'
-991866207: 18454: *** free: at 'ltoken.c:320' pnt '0x83adb40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18455: *** free: at 'ltoken.c:320' pnt '0x83adc40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18456: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb00|s3'
-991866207: 18457: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s7'
-991866207: 18458: *** free: at 'ltoken.c:320' pnt '0x83ad900|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18459: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s11'
-991866207: 18460: *** free: at 'ltoken.c:320' pnt '0x83ad680|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18461: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s17'
-991866207: 18462: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18463: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s17'
-991866207: 18464: *** free: at 'ltoken.c:320' pnt '0x83ad200|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18465: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s17'
-991866207: 18466: *** free: at 'ltoken.c:320' pnt '0x83ad240|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18467: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adc80|s1'
-991866207: 18468: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb80|s3'
-991866207: 18469: *** free: at 'ltoken.c:320' pnt '0x83adb80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18470: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83adcc0|s1'
-991866207: 18471: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83add00|s1'
-991866207: 18472: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83add40|s1'
-991866207: 18473: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83add80|s1'
-991866207: 18474: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s5'
-991866207: 18475: *** free: at 'ltoken.c:320' pnt '0x83adb40|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18476: *** free: at 'ltoken.c:320' pnt '0x83add80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18477: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adc40|s3'
-991866207: 18478: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s9'
-991866207: 18479: *** free: at 'ltoken.c:320' pnt '0x83ad900|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18480: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s13'
-991866207: 18481: *** free: at 'ltoken.c:320' pnt '0x83ad680|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18482: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s19'
-991866207: 18483: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18484: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s19'
-991866207: 18485: *** free: at 'ltoken.c:320' pnt '0x83ad200|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18486: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s19'
-991866207: 18487: *** free: at 'ltoken.c:320' pnt '0x83ad240|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18488: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83addc0|s1'
-991866207: 18489: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb80|s5'
-991866207: 18490: *** free: at 'ltoken.c:320' pnt '0x83adb80|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18491: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ade00|s1'
-991866207: 18492: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ade40|s1'
-991866207: 18493: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ade80|s1'
-991866207: 18494: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adec0|s1'
-991866207: 18495: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s7'
-991866207: 18496: *** free: at 'ltoken.c:320' pnt '0x83adb40|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18497: *** free: at 'ltoken.c:320' pnt '0x83adec0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18498: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83add80|s3'
-991866207: 18499: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s11'
-991866207: 18500: checking heap
-991866207: 18500: *** free: at 'ltoken.c:320' pnt '0x83ad900|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18501: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s15'
-991866207: 18502: *** free: at 'ltoken.c:320' pnt '0x83ad680|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18503: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s21'
-991866207: 18504: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s22': size 36, alloced at 'ltoken.c:253'
-991866207: 18505: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s21'
-991866207: 18506: *** free: at 'ltoken.c:320' pnt '0x83ad200|s22': size 36, alloced at 'ltoken.c:253'
-991866207: 18507: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s21'
-991866207: 18508: *** free: at 'ltoken.c:320' pnt '0x83ad240|s22': size 36, alloced at 'ltoken.c:253'
-991866207: 18509: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adf00|s1'
-991866207: 18510: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb80|s7'
-991866207: 18511: *** free: at 'ltoken.c:320' pnt '0x83adb80|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18512: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83adf40|s1'
-991866207: 18513: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adf80|s1'
-991866207: 18514: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adfc0|s1'
-991866207: 18515: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d00|s5'
-991866207: 18516: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s9'
-991866207: 18517: *** free: at 'ltoken.c:320' pnt '0x83adb40|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18518: *** free: at 'ltoken.c:320' pnt '0x83a4d00|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18519: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adec0|s3'
-991866207: 18520: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad900|s13'
-991866207: 18521: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5f40|s5'
-991866207: 18522: *** free: at 'ltoken.c:320' pnt '0x83a5f40|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18523: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s17'
-991866207: 18524: *** free: at 'ltoken.c:320' pnt '0x83ad680|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18525: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s23'
-991866207: 18526: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s24': size 36, alloced at 'ltoken.c:253'
-991866207: 18527: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s23'
-991866207: 18528: *** free: at 'ltoken.c:320' pnt '0x83ad200|s24': size 36, alloced at 'ltoken.c:253'
-991866207: 18529: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s23'
-991866207: 18530: *** free: at 'ltoken.c:320' pnt '0x83ad240|s24': size 36, alloced at 'ltoken.c:253'
-991866207: 18531: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83adb80|s9'
-991866207: 18532: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5c80|s11'
-991866207: 18533: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5dc0|s9'
-991866207: 18534: *** free: at 'ltoken.c:320' pnt '0x83a5dc0|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18535: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e40|s7'
-991866207: 18536: *** free: at 'ltoken.c:320' pnt '0x83a5e40|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18537: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s11'
-991866207: 18538: *** free: at 'ltoken.c:320' pnt '0x83adb40|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18539: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d00|s7'
-991866207: 18540: *** free: at 'ltoken.c:320' pnt '0x83a4d00|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18541: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e00|s7'
-991866207: 18542: *** free: at 'ltoken.c:320' pnt '0x83a5e00|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18543: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5f40|s7'
-991866207: 18544: *** free: at 'ltoken.c:320' pnt '0x83a5f40|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18545: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s19'
-991866207: 18546: *** free: at 'ltoken.c:320' pnt '0x83ad680|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18547: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s25'
-991866207: 18548: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s26': size 36, alloced at 'ltoken.c:253'
-991866207: 18549: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad200|s25'
-991866207: 18550: *** free: at 'ltoken.c:320' pnt '0x83ad200|s26': size 36, alloced at 'ltoken.c:253'
-991866207: 18551: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s25'
-991866207: 18552: *** free: at 'ltoken.c:320' pnt '0x83ad240|s26': size 36, alloced at 'ltoken.c:253'
-991866207: 18553: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5780|s17'
-991866207: 18554: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5dc0|s11'
-991866207: 18555: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5a40|s13'
-991866207: 18556: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e40|s9'
-991866207: 18557: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5ec0|s5'
-991866207: 18558: *** free: at 'ltoken.c:320' pnt '0x83a5ec0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18559: *** free: at 'ltoken.c:320' pnt '0x83a5e40|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18560: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a4d00|s9'
-991866207: 18561: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83adb40|s13'
-991866207: 18562: *** free: at 'ltoken.c:320' pnt '0x83adb40|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18563: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5e00|s9'
-991866207: 18564: *** free: at 'ltoken.c:320' pnt '0x83a5e00|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18565: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a5f40|s9'
-991866207: 18566: *** free: at 'ltoken.c:320' pnt '0x83a5f40|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18567: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad680|s21'
-991866207: 18568: *** free: at 'ltoken.c:320' pnt '0x83ad680|s22': size 36, alloced at 'ltoken.c:253'
-991866207: 18569: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad1c0|s27'
-991866207: 18570: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s28': size 36, alloced at 'ltoken.c:253'
-991866207: 18571: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad200|s27'
-991866207: 18572: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ad240|s27'
-991866207: 18573: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7000|s1'
-991866207: 18574: *** free: at 'ltoken.c:320' pnt '0x83a7000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18575: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s1'
-991866207: 18576: *** free: at 'ltoken.c:320' pnt '0x83a7040|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18577: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7080|s1'
-991866207: 18578: *** free: at 'ltoken.c:320' pnt '0x83a7080|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18579: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a70c0|s1'
-991866207: 18580: *** free: at 'ltoken.c:320' pnt '0x83a70c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18581: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7100|s1'
-991866207: 18582: *** free: at 'ltoken.c:320' pnt '0x83a7100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18583: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7140|s1'
-991866207: 18584: *** free: at 'ltoken.c:320' pnt '0x83a7140|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18585: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s1'
-991866207: 18586: *** free: at 'ltoken.c:320' pnt '0x83a7180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18587: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s1'
-991866207: 18588: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18589: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7200|s1'
-991866207: 18590: *** free: at 'ltoken.c:320' pnt '0x83a7200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18591: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7240|s1'
-991866207: 18592: *** free: at 'ltoken.c:320' pnt '0x83a7240|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18593: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7280|s1'
-991866207: 18594: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7000|s3'
-991866207: 18595: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a72c0|s1'
-991866207: 18596: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s3'
-991866207: 18597: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7300|s1'
-991866207: 18598: *** free: at 'ltoken.c:320' pnt '0x83a7300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18599: *** free: at 'ltoken.c:320' pnt '0x83a7040|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18600: checking heap
-991866207: 18600: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a70c0|s3'
-991866207: 18601: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7080|s3'
-991866207: 18602: *** free: at 'ltoken.c:320' pnt '0x83a7080|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18603: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7100|s3'
-991866207: 18604: *** free: at 'ltoken.c:320' pnt '0x83a7100|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18605: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7140|s3'
-991866207: 18606: *** free: at 'ltoken.c:320' pnt '0x83a7140|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18607: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s3'
-991866207: 18608: *** free: at 'ltoken.c:320' pnt '0x83a7180|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18609: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s3'
-991866207: 18610: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18611: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7200|s3'
-991866207: 18612: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7240|s3'
-991866207: 18613: *** free: at 'ltoken.c:320' pnt '0x83a7240|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18614: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7340|s1'
-991866207: 18615: *** free: at 'ltoken.c:320' pnt '0x83a7340|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18616: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7380|s1'
-991866207: 18617: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a73c0|s1'
-991866207: 18618: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7300|s3'
-991866207: 18619: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s5'
-991866207: 18620: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7400|s1'
-991866207: 18621: *** free: at 'ltoken.c:320' pnt '0x83a7400|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18622: *** free: at 'ltoken.c:320' pnt '0x83a7040|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18623: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7080|s5'
-991866207: 18624: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7100|s5'
-991866207: 18625: *** free: at 'ltoken.c:320' pnt '0x83a7100|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18626: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7140|s5'
-991866207: 18627: *** free: at 'ltoken.c:320' pnt '0x83a7140|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18628: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s5'
-991866207: 18629: *** free: at 'ltoken.c:320' pnt '0x83a7180|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18630: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s5'
-991866207: 18631: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18632: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s1'
-991866207: 18633: *** free: at 'ltoken.c:320' pnt '0x83a7440|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18634: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7240|s5'
-991866207: 18635: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7340|s3'
-991866207: 18636: *** free: at 'ltoken.c:320' pnt '0x83a7340|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18637: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7480|s1'
-991866207: 18638: *** free: at 'ltoken.c:320' pnt '0x83a7480|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18639: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a74c0|s1'
-991866207: 18640: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7500|s1'
-991866207: 18641: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7400|s3'
-991866207: 18642: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s7'
-991866207: 18643: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s1'
-991866207: 18644: *** free: at 'ltoken.c:320' pnt '0x83a7540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18645: *** free: at 'ltoken.c:320' pnt '0x83a7040|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18646: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7100|s7'
-991866207: 18647: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7140|s7'
-991866207: 18648: *** free: at 'ltoken.c:320' pnt '0x83a7140|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18649: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s7'
-991866207: 18650: *** free: at 'ltoken.c:320' pnt '0x83a7180|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18651: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s7'
-991866207: 18652: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18653: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s3'
-991866207: 18654: *** free: at 'ltoken.c:320' pnt '0x83a7440|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18655: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s1'
-991866207: 18656: *** free: at 'ltoken.c:320' pnt '0x83a7580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18657: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7340|s5'
-991866207: 18658: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7480|s3'
-991866207: 18659: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a75c0|s1'
-991866207: 18660: *** free: at 'ltoken.c:320' pnt '0x83a75c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18661: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7600|s1'
-991866207: 18662: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7640|s1'
-991866207: 18663: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7680|s1'
-991866207: 18664: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s3'
-991866207: 18665: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s9'
-991866207: 18666: *** free: at 'ltoken.c:320' pnt '0x83a7040|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18667: *** free: at 'ltoken.c:320' pnt '0x83a7540|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18668: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7140|s9'
-991866207: 18669: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a76c0|s1'
-991866207: 18670: *** free: at 'ltoken.c:320' pnt '0x83a76c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18671: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s9'
-991866207: 18672: *** free: at 'ltoken.c:320' pnt '0x83a7180|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18673: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s9'
-991866207: 18674: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18675: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s5'
-991866207: 18676: *** free: at 'ltoken.c:320' pnt '0x83a7440|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18677: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s3'
-991866207: 18678: *** free: at 'ltoken.c:320' pnt '0x83a7580|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18679: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7700|s1'
-991866207: 18680: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a75c0|s3'
-991866207: 18681: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7740|s1'
-991866207: 18682: *** free: at 'ltoken.c:320' pnt '0x83a7740|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18683: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7780|s1'
-991866207: 18684: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a77c0|s1'
-991866207: 18685: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7800|s1'
-991866207: 18686: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s11'
-991866207: 18687: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s5'
-991866207: 18688: *** free: at 'ltoken.c:320' pnt '0x83a7540|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18689: *** free: at 'ltoken.c:320' pnt '0x83a7040|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18690: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a76c0|s3'
-991866207: 18691: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7840|s1'
-991866207: 18692: *** free: at 'ltoken.c:320' pnt '0x83a7840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18693: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s11'
-991866207: 18694: *** free: at 'ltoken.c:320' pnt '0x83a7180|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18695: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s11'
-991866207: 18696: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18697: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s7'
-991866207: 18698: *** free: at 'ltoken.c:320' pnt '0x83a7440|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18699: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s5'
-991866207: 18700: checking heap
-991866207: 18700: *** free: at 'ltoken.c:320' pnt '0x83a7580|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18701: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7880|s1'
-991866207: 18702: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7740|s3'
-991866207: 18703: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a78c0|s1'
-991866207: 18704: *** free: at 'ltoken.c:320' pnt '0x83a78c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18705: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7900|s1'
-991866207: 18706: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7940|s1'
-991866207: 18707: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7980|s1'
-991866207: 18708: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s7'
-991866207: 18709: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s13'
-991866207: 18710: *** free: at 'ltoken.c:320' pnt '0x83a7040|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18711: *** free: at 'ltoken.c:320' pnt '0x83a7540|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18712: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7840|s3'
-991866207: 18713: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a79c0|s1'
-991866207: 18714: *** free: at 'ltoken.c:320' pnt '0x83a79c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18715: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s13'
-991866207: 18716: *** free: at 'ltoken.c:320' pnt '0x83a7180|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18717: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s13'
-991866207: 18718: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18719: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s9'
-991866207: 18720: *** free: at 'ltoken.c:320' pnt '0x83a7440|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18721: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s7'
-991866207: 18722: *** free: at 'ltoken.c:320' pnt '0x83a7580|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18723: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7a00|s1'
-991866207: 18724: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a78c0|s3'
-991866207: 18725: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7a40|s1'
-991866207: 18726: *** free: at 'ltoken.c:320' pnt '0x83a7a40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18727: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7a80|s1'
-991866207: 18728: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7ac0|s1'
-991866207: 18729: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7b00|s1'
-991866207: 18730: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s15'
-991866207: 18731: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s9'
-991866207: 18732: *** free: at 'ltoken.c:320' pnt '0x83a7540|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18733: *** free: at 'ltoken.c:320' pnt '0x83a7040|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18734: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a79c0|s3'
-991866207: 18735: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7b40|s1'
-991866207: 18736: *** free: at 'ltoken.c:320' pnt '0x83a7b40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18737: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s15'
-991866207: 18738: *** free: at 'ltoken.c:320' pnt '0x83a7180|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18739: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s15'
-991866207: 18740: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18741: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s11'
-991866207: 18742: *** free: at 'ltoken.c:320' pnt '0x83a7440|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18743: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s9'
-991866207: 18744: *** free: at 'ltoken.c:320' pnt '0x83a7580|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18745: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7b80|s1'
-991866207: 18746: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7a40|s3'
-991866207: 18747: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7bc0|s1'
-991866207: 18748: *** free: at 'ltoken.c:320' pnt '0x83a7bc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18749: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7c00|s1'
-991866207: 18750: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7c40|s1'
-991866207: 18751: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7c80|s1'
-991866207: 18752: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s11'
-991866207: 18753: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s17'
-991866207: 18754: *** free: at 'ltoken.c:320' pnt '0x83a7040|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18755: *** free: at 'ltoken.c:320' pnt '0x83a7540|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18756: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7b40|s3'
-991866207: 18757: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7cc0|s1'
-991866207: 18758: *** free: at 'ltoken.c:320' pnt '0x83a7cc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18759: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s17'
-991866207: 18760: *** free: at 'ltoken.c:320' pnt '0x83a7180|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18761: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s17'
-991866207: 18762: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 18763: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s13'
-991866207: 18764: *** free: at 'ltoken.c:320' pnt '0x83a7440|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18765: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s11'
-991866207: 18766: *** free: at 'ltoken.c:320' pnt '0x83a7580|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 18767: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7d00|s1'
-991866207: 18768: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7bc0|s3'
-991866207: 18769: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7d40|s1'
-991866207: 18770: *** free: at 'ltoken.c:320' pnt '0x83a7d40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18771: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7d80|s1'
-991866207: 18772: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7dc0|s1'
-991866207: 18773: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7e00|s1'
-991866207: 18774: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s19'
-991866207: 18775: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s13'
-991866207: 18776: *** free: at 'ltoken.c:320' pnt '0x83a7540|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18777: *** free: at 'ltoken.c:320' pnt '0x83a7040|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18778: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7cc0|s3'
-991866207: 18779: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7e40|s1'
-991866207: 18780: *** free: at 'ltoken.c:320' pnt '0x83a7e40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18781: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7180|s19'
-991866207: 18782: *** free: at 'ltoken.c:320' pnt '0x83a7180|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18783: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a71c0|s19'
-991866207: 18784: *** free: at 'ltoken.c:320' pnt '0x83a71c0|s20': size 36, alloced at 'ltoken.c:253'
-991866207: 18785: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s15'
-991866207: 18786: *** free: at 'ltoken.c:320' pnt '0x83a7440|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18787: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7580|s13'
-991866207: 18788: *** free: at 'ltoken.c:320' pnt '0x83a7580|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 18789: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7e80|s1'
-991866207: 18790: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7d40|s3'
-991866207: 18791: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7ec0|s1'
-991866207: 18792: *** free: at 'ltoken.c:320' pnt '0x83a7ec0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18793: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7f00|s1'
-991866207: 18794: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7f40|s1'
-991866207: 18795: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7f80|s1'
-991866207: 18796: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7540|s15'
-991866207: 18797: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7040|s21'
-991866207: 18798: *** free: at 'ltoken.c:320' pnt '0x83a7040|s22': size 36, alloced at 'ltoken.c:253'
-991866207: 18799: *** free: at 'ltoken.c:320' pnt '0x83a7540|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 18800: checking heap
-991866207: 18800: *** free: at 'ra=0x40092cd9' pnt '0x822d400|s2': size 364, alloced at 'ra=0x400932b1'
-991866207: 18801: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83a1dc0|s3'
-991866207: 18802: *** alloc: at 'ra=0x80a560f' for 840 bytes, got '0x8233400|s1'
-991866207: 18803: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x8224e60|s3'
-991866207: 18804: *** alloc: at 'osd.c:203' for 39 bytes, got '0x83a71c0|s21'
-991866207: 18805: *** free: at 'ra=0x80a28ed' pnt '0x8224e60|s4': size 12, alloced at 'ra=0x80e6889'
-991866207: 18806: *** alloc: at 'ra=0x80e6889' for 39 bytes, got '0x83a7440|s17'
-991866207: 18807: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d000|s5'
-991866207: 18808: *** alloc: at 'syntable.c:184' for 1024 bytes, got '0x8233800|s1'
-991866207: 18809: *** alloc: at 'tokentable.c:129' for 4096 bytes, got '0x83a8000|s1'
-991866207: 18810: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7580|s15'
-991866207: 18811: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7180|s21'
-991866207: 18812: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7ec0|s3'
-991866207: 18813: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7e40|s3'
-991866207: 18814: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7fc0|s1'
-991866207: 18815: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad1c0|s29'
-991866207: 18816: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ad680|s23'
-991866207: 18817: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5f40|s11'
-991866207: 18818: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7040|s23'
-991866207: 18819: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a7540|s17'
-991866207: 18820: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5e00|s11'
-991866207: 18821: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83adb40|s15'
-991866207: 18822: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5e40|s11'
-991866207: 18823: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83a5ec0|s7'
-991866207: 18824: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af000|s1'
-991866207: 18825: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af040|s1'
-991866207: 18826: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af080|s1'
-991866207: 18827: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af0c0|s1'
-991866207: 18828: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af100|s1'
-991866207: 18829: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af140|s1'
-991866207: 18830: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af180|s1'
-991866207: 18831: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af1c0|s1'
-991866207: 18832: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af200|s1'
-991866207: 18833: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af240|s1'
-991866207: 18834: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af280|s1'
-991866207: 18835: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af2c0|s1'
-991866207: 18836: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af300|s1'
-991866207: 18837: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af340|s1'
-991866207: 18838: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af380|s1'
-991866207: 18839: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af3c0|s1'
-991866207: 18840: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af400|s1'
-991866207: 18841: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af440|s1'
-991866207: 18842: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af480|s1'
-991866207: 18843: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af4c0|s1'
-991866207: 18844: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af500|s1'
-991866207: 18845: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af540|s1'
-991866207: 18846: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af580|s1'
-991866207: 18847: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af5c0|s1'
-991866207: 18848: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af600|s1'
-991866207: 18849: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af640|s1'
-991866207: 18850: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af680|s1'
-991866207: 18851: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af6c0|s1'
-991866207: 18852: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af700|s1'
-991866207: 18853: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af740|s1'
-991866207: 18854: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af780|s1'
-991866207: 18855: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af7c0|s1'
-991866207: 18856: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af800|s1'
-991866207: 18857: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af840|s1'
-991866207: 18858: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af880|s1'
-991866207: 18859: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af8c0|s1'
-991866207: 18860: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af900|s1'
-991866207: 18861: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af940|s1'
-991866207: 18862: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af980|s1'
-991866207: 18863: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83af9c0|s1'
-991866207: 18864: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afa00|s1'
-991866207: 18865: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afa40|s1'
-991866207: 18866: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afa80|s1'
-991866207: 18867: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afac0|s1'
-991866207: 18868: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afb00|s1'
-991866207: 18869: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afb40|s1'
-991866207: 18870: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afb80|s1'
-991866207: 18871: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afbc0|s1'
-991866207: 18872: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afc00|s1'
-991866207: 18873: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afc40|s1'
-991866207: 18874: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afc80|s1'
-991866207: 18875: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afcc0|s1'
-991866207: 18876: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afd00|s1'
-991866207: 18877: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afd40|s1'
-991866207: 18878: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afd80|s1'
-991866207: 18879: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afdc0|s1'
-991866207: 18880: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afe00|s1'
-991866207: 18881: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afe40|s1'
-991866207: 18882: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afe80|s1'
-991866207: 18883: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83afec0|s1'
-991866207: 18884: *** free: at 'ltoken.c:320' pnt '0x83afec0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18885: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83aff00|s1'
-991866207: 18886: *** free: at 'ltoken.c:320' pnt '0x83aff00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18887: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83aff40|s1'
-991866207: 18888: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83aff80|s1'
-991866207: 18889: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83affc0|s1'
-991866207: 18890: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0000|s1'
-991866207: 18891: *** free: at 'ltoken.c:320' pnt '0x83affc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18892: *** free: at 'ltoken.c:320' pnt '0x83aff40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18893: *** free: at 'ltoken.c:320' pnt '0x83b0000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18894: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s1'
-991866207: 18895: *** free: at 'ltoken.c:320' pnt '0x83b0040|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18896: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0080|s1'
-991866207: 18897: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b00c0|s1'
-991866207: 18898: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0100|s1'
-991866207: 18899: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0140|s1'
-991866207: 18900: checking heap
-991866207: 18900: *** free: at 'ltoken.c:320' pnt '0x83b0100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18901: *** free: at 'ltoken.c:320' pnt '0x83b0080|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18902: *** free: at 'ltoken.c:320' pnt '0x83b0140|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18903: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0180|s1'
-991866207: 18904: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b01c0|s1'
-991866207: 18905: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0200|s1'
-991866207: 18906: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0240|s1'
-991866207: 18907: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0280|s1'
-991866207: 18908: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b02c0|s1'
-991866207: 18909: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0300|s1'
-991866207: 18910: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0340|s1'
-991866207: 18911: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83affc0|s3'
-991866207: 18912: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83aff40|s3'
-991866207: 18913: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0000|s3'
-991866207: 18914: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0380|s1'
-991866207: 18915: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s3'
-991866207: 18916: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b03c0|s1'
-991866207: 18917: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0400|s1'
-991866207: 18918: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0440|s1'
-991866207: 18919: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s1'
-991866207: 18920: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0100|s3'
-991866207: 18921: *** free: at 'ltoken.c:320' pnt '0x83b0200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18922: *** free: at 'ltoken.c:320' pnt '0x83b0280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18923: *** free: at 'ltoken.c:320' pnt '0x83b0300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18924: *** free: at 'ltoken.c:320' pnt '0x83affc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18925: *** free: at 'ltoken.c:320' pnt '0x83b0000|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18926: *** free: at 'ltoken.c:320' pnt '0x83b0040|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18927: *** free: at 'ltoken.c:320' pnt '0x83b0400|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18928: *** free: at 'ltoken.c:320' pnt '0x83b0480|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18929: *** free: at 'ltoken.c:320' pnt '0x83b0180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18930: *** free: at 'ltoken.c:320' pnt '0x83b0100|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18931: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0140|s3'
-991866207: 18932: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0080|s3'
-991866207: 18933: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b04c0|s1'
-991866207: 18934: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0500|s1'
-991866207: 18935: *** free: at 'ltoken.c:320' pnt '0x83b04c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18936: *** free: at 'ltoken.c:320' pnt '0x83b0140|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18937: *** free: at 'ltoken.c:320' pnt '0x83b0500|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18938: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0540|s1'
-991866207: 18939: *** free: at 'ltoken.c:320' pnt '0x83b0540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18940: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0580|s1'
-991866207: 18941: *** free: at 'ltoken.c:320' pnt '0x83b0580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18942: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0280|s3'
-991866207: 18943: *** free: at 'ltoken.c:320' pnt '0x83b0280|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18944: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83affc0|s5'
-991866207: 18945: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0000|s5'
-991866207: 18946: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s5'
-991866207: 18947: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0400|s3'
-991866207: 18948: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s3'
-991866207: 18949: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0180|s3'
-991866207: 18950: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0100|s5'
-991866207: 18951: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0300|s3'
-991866207: 18952: *** free: at 'ltoken.c:320' pnt '0x83b0040|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18953: *** free: at 'ltoken.c:320' pnt '0x83b0480|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18954: *** free: at 'ltoken.c:320' pnt '0x83b0100|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18955: *** free: at 'ltoken.c:320' pnt '0x83affc0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18956: *** free: at 'ltoken.c:320' pnt '0x83b0300|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18957: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0500|s3'
-991866207: 18958: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0140|s5'
-991866207: 18959: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0540|s3'
-991866207: 18960: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b04c0|s3'
-991866207: 18961: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0580|s3'
-991866207: 18962: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0200|s3'
-991866207: 18963: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0280|s5'
-991866207: 18964: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s1'
-991866207: 18965: *** free: at 'ltoken.c:320' pnt '0x83b0540|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18966: *** free: at 'ltoken.c:320' pnt '0x83b0580|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18967: *** free: at 'ltoken.c:320' pnt '0x83b0280|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18968: *** free: at 'ltoken.c:320' pnt '0x83b0500|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18969: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18970: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0600|s1'
-991866207: 18971: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0640|s1'
-991866207: 18972: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s7'
-991866207: 18973: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s5'
-991866207: 18974: *** free: at 'ltoken.c:320' pnt '0x83b0040|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18975: *** free: at 'ltoken.c:320' pnt '0x83b0600|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18976: *** free: at 'ltoken.c:320' pnt '0x83b0480|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18977: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0300|s5'
-991866207: 18978: *** free: at 'ltoken.c:320' pnt '0x83b0300|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18979: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83affc0|s7'
-991866207: 18980: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0100|s7'
-991866207: 18981: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0680|s1'
-991866207: 18982: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b06c0|s1'
-991866207: 18983: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0700|s1'
-991866207: 18984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s1'
-991866207: 18985: *** free: at 'ltoken.c:320' pnt '0x83b0680|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18986: *** free: at 'ltoken.c:320' pnt '0x83b0700|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18987: *** free: at 'ltoken.c:320' pnt '0x83affc0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18988: *** free: at 'ltoken.c:320' pnt '0x83b0740|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 18989: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s3'
-991866207: 18990: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 18991: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0500|s5'
-991866207: 18992: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0280|s7'
-991866207: 18993: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0580|s5'
-991866207: 18994: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s9'
-991866207: 18995: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0600|s3'
-991866207: 18996: *** free: at 'ltoken.c:320' pnt '0x83b0500|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 18997: *** free: at 'ltoken.c:320' pnt '0x83b0280|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 18998: *** free: at 'ltoken.c:320' pnt '0x83b0040|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 18999: *** free: at 'ltoken.c:320' pnt '0x83b0600|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19000: checking heap
-991866207: 19000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0300|s7'
-991866207: 19001: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s7'
-991866207: 19002: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0540|s5'
-991866207: 19003: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0780|s1'
-991866207: 19004: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b07c0|s1'
-991866207: 19005: *** free: at 'ltoken.c:320' pnt '0x83b0300|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19006: *** free: at 'ltoken.c:320' pnt '0x83b0480|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19007: *** free: at 'ltoken.c:320' pnt '0x83b0780|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19008: *** free: at 'ltoken.c:320' pnt '0x83b07c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19009: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s3'
-991866207: 19010: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s5'
-991866207: 19011: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83affc0|s9'
-991866207: 19012: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0700|s3'
-991866207: 19013: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0680|s3'
-991866207: 19014: *** free: at 'ltoken.c:320' pnt '0x83b0740|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19015: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19016: *** free: at 'ltoken.c:320' pnt '0x83b0700|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19017: *** free: at 'ltoken.c:320' pnt '0x83b0680|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19018: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s11'
-991866207: 19019: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0600|s5'
-991866207: 19020: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0280|s9'
-991866207: 19021: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0500|s7'
-991866207: 19022: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0800|s1'
-991866207: 19023: *** free: at 'ltoken.c:320' pnt '0x83b0040|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 19024: *** free: at 'ltoken.c:320' pnt '0x83b0600|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19025: *** free: at 'ltoken.c:320' pnt '0x83b0500|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19026: *** free: at 'ltoken.c:320' pnt '0x83b0800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19027: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0780|s3'
-991866207: 19028: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b07c0|s3'
-991866207: 19029: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s9'
-991866207: 19030: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0300|s9'
-991866207: 19031: *** free: at 'ltoken.c:320' pnt '0x83b0780|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19032: *** free: at 'ltoken.c:320' pnt '0x83b07c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19033: *** free: at 'ltoken.c:320' pnt '0x83b0480|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19034: *** free: at 'ltoken.c:320' pnt '0x83b0300|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19035: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s7'
-991866207: 19036: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0700|s5'
-991866207: 19037: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0680|s5'
-991866207: 19038: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s5'
-991866207: 19039: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0840|s1'
-991866207: 19040: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19041: *** free: at 'ltoken.c:320' pnt '0x83b0700|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19042: *** free: at 'ltoken.c:320' pnt '0x83b0740|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19043: *** free: at 'ltoken.c:320' pnt '0x83b0840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19044: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0600|s7'
-991866207: 19045: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0500|s9'
-991866207: 19046: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0800|s3'
-991866207: 19047: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s13'
-991866207: 19048: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0880|s1'
-991866207: 19049: *** free: at 'ltoken.c:320' pnt '0x83b0600|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19050: *** free: at 'ltoken.c:320' pnt '0x83b0500|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19051: *** free: at 'ltoken.c:320' pnt '0x83b0040|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 19052: *** free: at 'ltoken.c:320' pnt '0x83b0880|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19053: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s11'
-991866207: 19054: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0300|s11'
-991866207: 19055: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b07c0|s5'
-991866207: 19056: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0780|s5'
-991866207: 19057: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s1'
-991866207: 19058: *** free: at 'ltoken.c:320' pnt '0x83b0480|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 19059: *** free: at 'ltoken.c:320' pnt '0x83b0300|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 19060: *** free: at 'ltoken.c:320' pnt '0x83b0780|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19061: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19062: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s7'
-991866207: 19063: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0840|s3'
-991866207: 19064: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0700|s7'
-991866207: 19065: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s9'
-991866207: 19066: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0900|s1'
-991866207: 19067: *** free: at 'ltoken.c:320' pnt '0x83b0740|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19068: *** free: at 'ltoken.c:320' pnt '0x83b0840|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19069: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19070: *** free: at 'ltoken.c:320' pnt '0x83b0900|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19071: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s15'
-991866207: 19072: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0880|s3'
-991866207: 19073: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0500|s11'
-991866207: 19074: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0600|s9'
-991866207: 19075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0940|s1'
-991866207: 19076: *** free: at 'ltoken.c:320' pnt '0x83b0040|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 19077: *** free: at 'ltoken.c:320' pnt '0x83b0880|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19078: *** free: at 'ltoken.c:320' pnt '0x83b0600|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19079: *** free: at 'ltoken.c:320' pnt '0x83b0940|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19080: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0780|s7'
-991866207: 19081: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s3'
-991866207: 19082: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0300|s13'
-991866207: 19083: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0480|s13'
-991866207: 19084: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0980|s1'
-991866207: 19085: *** free: at 'ltoken.c:320' pnt '0x83b0780|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19086: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19087: *** free: at 'ltoken.c:320' pnt '0x83b0480|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 19088: *** free: at 'ltoken.c:320' pnt '0x83b0980|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19089: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s11'
-991866207: 19090: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0900|s3'
-991866207: 19091: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0840|s5'
-991866207: 19092: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s9'
-991866207: 19093: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 19094: *** free: at 'ltoken.c:320' pnt '0x83b0900|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19095: *** free: at 'ltoken.c:320' pnt '0x83b0840|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19096: *** free: at 'ltoken.c:320' pnt '0x83b0740|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19097: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0880|s5'
-991866207: 19098: *** free: at 'ltoken.c:320' pnt '0x83b0880|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19099: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0940|s3'
-991866207: 19100: checking heap
-991866207: 19100: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0600|s11'
-991866207: 19101: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0040|s17'
-991866207: 19102: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b09c0|s1'
-991866207: 19103: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a00|s1'
-991866207: 19104: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a40|s1'
-991866207: 19105: *** free: at 'ltoken.c:320' pnt '0x83b0940|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19106: *** free: at 'ltoken.c:320' pnt '0x83b0040|s18': size 36, alloced at 'ltoken.c:253'
-991866207: 19107: *** free: at 'ltoken.c:320' pnt '0x83b0a00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19108: *** free: at 'ltoken.c:320' pnt '0x83b0a40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0980|s3'
-991866207: 19110: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0480|s15'
-991866207: 19111: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s5'
-991866207: 19112: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0780|s9'
-991866207: 19113: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s13'
-991866207: 19114: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0900|s5'
-991866207: 19115: *** free: at 'ltoken.c:320' pnt '0x83b0980|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19116: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19117: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 19118: *** free: at 'ltoken.c:320' pnt '0x83b0900|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0880|s7'
-991866207: 19120: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s11'
-991866207: 19121: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0840|s7'
-991866207: 19122: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a80|s1'
-991866207: 19123: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0ac0|s1'
-991866207: 19124: *** free: at 'ltoken.c:320' pnt '0x83b0880|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19125: *** free: at 'ltoken.c:320' pnt '0x83b0740|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 19126: *** free: at 'ltoken.c:320' pnt '0x83b0a80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19127: *** free: at 'ltoken.c:320' pnt '0x83b0ac0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19128: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a40|s3'
-991866207: 19129: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a00|s3'
-991866207: 19130: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0040|s19'
-991866207: 19131: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0940|s5'
-991866207: 19132: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0b00|s1'
-991866207: 19133: *** free: at 'ltoken.c:320' pnt '0x83b0a40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19134: *** free: at 'ltoken.c:320' pnt '0x83b0a00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19135: *** free: at 'ltoken.c:320' pnt '0x83b0940|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19136: *** free: at 'ltoken.c:320' pnt '0x83b0b00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19137: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b05c0|s15'
-991866207: 19138: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0900|s7'
-991866207: 19139: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s7'
-991866207: 19140: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0980|s5'
-991866207: 19141: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0b40|s1'
-991866207: 19142: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0b80|s1'
-991866207: 19143: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 19144: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19145: *** free: at 'ltoken.c:320' pnt '0x83b0b40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19146: *** free: at 'ltoken.c:320' pnt '0x83b0b80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19147: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0ac0|s3'
-991866207: 19148: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0a80|s3'
-991866207: 19149: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s13'
-991866207: 19150: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0880|s9'
-991866207: 19151: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0bc0|s1'
-991866207: 19152: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c00|s1'
-991866207: 19153: *** free: at 'ltoken.c:320' pnt '0x83b0ac0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19154: *** free: at 'ltoken.c:320' pnt '0x83b0740|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 19155: *** free: at 'ltoken.c:320' pnt '0x83b0bc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19156: *** free: at 'ltoken.c:320' pnt '0x83b0c00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19157: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0b00|s3'
-991866207: 19158: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0940|s7'
-991866207: 19159: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a00|s5'
-991866207: 19160: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0a40|s5'
-991866207: 19161: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c40|s1'
-991866207: 19162: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c80|s1'
-991866207: 19163: *** free: at 'ltoken.c:320' pnt '0x83b0b00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19164: *** free: at 'ltoken.c:320' pnt '0x83b0a00|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19165: *** free: at 'ltoken.c:320' pnt '0x83b0c40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19166: *** free: at 'ltoken.c:320' pnt '0x83b0c80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19167: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0b80|s3'
-991866207: 19168: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0b40|s3'
-991866207: 19169: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s9'
-991866207: 19170: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b05c0|s17'
-991866207: 19171: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0cc0|s1'
-991866207: 19172: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d00|s1'
-991866207: 19173: *** free: at 'ltoken.c:320' pnt '0x83b0b80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19174: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19175: *** free: at 'ltoken.c:320' pnt '0x83b0cc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19176: *** free: at 'ltoken.c:320' pnt '0x83b0d00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19177: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c00|s3'
-991866207: 19178: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0bc0|s3'
-991866207: 19179: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0740|s15'
-991866207: 19180: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0ac0|s5'
-991866207: 19181: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d40|s1'
-991866207: 19182: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d80|s1'
-991866207: 19183: *** free: at 'ltoken.c:320' pnt '0x83b0c00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19184: *** free: at 'ltoken.c:320' pnt '0x83b0740|s16': size 36, alloced at 'ltoken.c:253'
-991866207: 19185: *** free: at 'ltoken.c:320' pnt '0x83b0d40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19186: *** free: at 'ltoken.c:320' pnt '0x83b0d80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19187: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c80|s3'
-991866207: 19188: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0c40|s3'
-991866207: 19189: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a00|s7'
-991866207: 19190: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0b00|s5'
-991866207: 19191: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0dc0|s1'
-991866207: 19192: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0e00|s1'
-991866207: 19193: *** free: at 'ltoken.c:320' pnt '0x83b0c80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19194: *** free: at 'ltoken.c:320' pnt '0x83b0a00|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 19195: *** free: at 'ltoken.c:320' pnt '0x83b0dc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19196: *** free: at 'ltoken.c:320' pnt '0x83b0e00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19197: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d00|s3'
-991866207: 19198: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0cc0|s3'
-991866207: 19199: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s11'
-991866207: 19200: checking heap
-991866207: 19200: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0b80|s5'
-991866207: 19201: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0e40|s1'
-991866207: 19202: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0e80|s1'
-991866207: 19203: *** free: at 'ltoken.c:320' pnt '0x83b0d00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19204: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s12': size 36, alloced at 'ltoken.c:253'
-991866207: 19205: *** free: at 'ltoken.c:320' pnt '0x83b0e40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19206: *** free: at 'ltoken.c:320' pnt '0x83b0e80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19207: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d80|s3'
-991866207: 19208: *** free: at 'ltoken.c:320' pnt '0x83b0d80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19209: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d40|s3'
-991866207: 19210: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0740|s17'
-991866207: 19211: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c00|s5'
-991866207: 19212: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0ec0|s1'
-991866207: 19213: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c80|s5'
-991866207: 19214: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0a00|s9'
-991866207: 19215: *** free: at 'ltoken.c:320' pnt '0x83b0d40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19216: *** free: at 'ltoken.c:320' pnt '0x83b0c00|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19217: *** free: at 'ltoken.c:320' pnt '0x83b0c80|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19218: *** free: at 'ltoken.c:320' pnt '0x83b0a00|s10': size 36, alloced at 'ltoken.c:253'
-991866207: 19219: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0e00|s3'
-991866207: 19220: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0dc0|s3'
-991866207: 19221: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0f00|s1'
-991866207: 19222: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0f40|s1'
-991866207: 19223: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d00|s5'
-991866207: 19224: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s13'
-991866207: 19225: *** free: at 'ltoken.c:320' pnt '0x83b0e00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19226: *** free: at 'ltoken.c:320' pnt '0x83b0f00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19227: *** free: at 'ltoken.c:320' pnt '0x83b0d00|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19228: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s14': size 36, alloced at 'ltoken.c:253'
-991866207: 19229: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d80|s5'
-991866207: 19230: *** free: at 'ra=0x40092cd9' pnt '0x822d000|s6': size 364, alloced at 'ra=0x400932b1'
-991866207: 19231: *** free: at 'ra=0x80a28ed' pnt '0x83a7440|s18': size 39, alloced at 'ra=0x80e6889'
-991866207: 19232: *** free: at 'ra=0x80a55f5' pnt '0x8233400|s2': size 840, alloced at 'ra=0x80a560f'
-991866207: 19233: *** alloc: at 'symtable.c:224' for 12 bytes, got '0x8224e60|s5'
-991866207: 19234: *** alloc: at 'symtable.c:253' for 16 bytes, got '0x83a1de0|s1'
-991866207: 19235: *** alloc: at 'symtable.c:1791' for 12 bytes, got '0x83a1e00|s1'
-991866207: 19236: *** alloc: at 'symtable.c:1793' for 1024 bytes, got '0x8233c00|s1'
-991866207: 19237: *** alloc: at 'mapping.c:76' for 8 bytes, got '0x83a1e20|s1'
-991866207: 19238: *** alloc: at 'mapping.c:78' for 512 bytes, got '0x822d400|s3'
-991866207: 19239: *** alloc: at 'mapping.c:113' for 12 bytes, got '0x83a1e40|s1'
-991866207: 19240: *** alloc: at 'symtable.c:1625' for 800 bytes, got '0x83b1000|s1'
-991866207: 19241: *** alloc: at 'symtable.c:245' for 4 bytes, got '0x83a1e60|s1'
-991866207: 19242: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0a00|s11'
-991866207: 19243: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0c80|s7'
-991866207: 19244: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83a1e80|s1'
-991866207: 19245: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83a1ea0|s1'
-991866207: 19246: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0f00|s3'
-991866207: 19247: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83a1ec0|s1'
-991866207: 19248: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83a1ee0|s1'
-991866207: 19249: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83a1f00|s1'
-991866207: 19250: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83a1f20|s1'
-991866207: 19251: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83a7440|s19'
-991866207: 19252: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b08c0|s15'
-991866207: 19253: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83a1f40|s1'
-991866207: 19254: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83a1f60|s1'
-991866207: 19255: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0d00|s7'
-991866207: 19256: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b0e00|s5'
-991866207: 19257: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83a1f80|s1'
-991866207: 19258: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83a1fa0|s1'
-991866207: 19259: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0c00|s7'
-991866207: 19260: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83a1fc0|s1'
-991866207: 19261: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83a1fe0|s1'
-991866207: 19262: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0d40|s5'
-991866207: 19263: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b3000|s1'
-991866207: 19264: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3020|s1'
-991866207: 19265: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0e80|s3'
-991866207: 19266: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b3040|s1'
-991866207: 19267: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3060|s1'
-991866207: 19268: *** alloc: at 'sort.c:1871' for 8 bytes, got '0x83b3080|s1'
-991866207: 19269: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b0e40|s3'
-991866207: 19270: *** alloc: at 'sort.c:1876' for 48 bytes, got '0x83b0f80|s1'
-991866207: 19271: *** alloc: at 'sort.c:1889' for 48 bytes, got '0x83b0fc0|s1'
-991866207: 19272: *** alloc: at 'sort.c:2015' for 400 bytes, got '0x822d000|s7'
-991866207: 19273: *** alloc: at 'sort.c:909' for 48 bytes, got '0x83aff00|s3'
-991866207: 19274: *** alloc: at 'sort.c:1729' for 8 bytes, got '0x83b30a0|s1'
-991866207: 19275: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83afec0|s3'
-991866207: 19276: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5000|s1'
-991866207: 19277: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5040|s1'
-991866207: 19278: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b30c0|s1'
-991866207: 19279: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b30e0|s1'
-991866207: 19280: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3100|s1'
-991866207: 19281: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b3120|s1'
-991866207: 19282: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3140|s1'
-991866207: 19283: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3160|s1'
-991866207: 19284: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3180|s1'
-991866207: 19285: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b31a0|s1'
-991866207: 19286: *** alloc: at 'sort.c:387' for 48 bytes, got '0x83b5080|s1'
-991866207: 19287: *** alloc: at 'sort.c:351' for 48 bytes, got '0x83b50c0|s1'
-991866207: 19288: *** alloc: at 'sort.c:1729' for 8 bytes, got '0x83b31c0|s1'
-991866207: 19289: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5100|s1'
-991866207: 19290: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5140|s1'
-991866207: 19291: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5180|s1'
-991866207: 19292: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b31e0|s1'
-991866207: 19293: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3200|s1'
-991866207: 19294: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3220|s1'
-991866207: 19295: *** free: at 'abstract.c:5702' pnt '0x83b31c0|s2': size 8, alloced at 'sort.c:1729'
-991866207: 19296: *** alloc: at 'sort.c:351' for 48 bytes, got '0x83b51c0|s1'
-991866207: 19297: *** alloc: at 'sort.c:1729' for 8 bytes, got '0x83b3240|s1'
-991866207: 19298: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5200|s1'
-991866207: 19299: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5240|s1'
-991866207: 19300: checking heap
-991866207: 19300: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5280|s1'
-991866207: 19301: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b3260|s1'
-991866207: 19302: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3280|s1'
-991866207: 19303: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b32a0|s1'
-991866207: 19304: *** free: at 'abstract.c:5702' pnt '0x83b3240|s2': size 8, alloced at 'sort.c:1729'
-991866207: 19305: *** alloc: at 'sort.c:351' for 48 bytes, got '0x83b52c0|s1'
-991866207: 19306: *** alloc: at 'sort.c:1729' for 8 bytes, got '0x83b32c0|s1'
-991866207: 19307: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5300|s1'
-991866207: 19308: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5340|s1'
-991866207: 19309: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5380|s1'
-991866207: 19310: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b32e0|s1'
-991866207: 19311: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3300|s1'
-991866207: 19312: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3320|s1'
-991866207: 19313: *** free: at 'abstract.c:5702' pnt '0x83b32c0|s2': size 8, alloced at 'sort.c:1729'
-991866207: 19314: *** alloc: at 'sort.c:569' for 48 bytes, got '0x83b53c0|s1'
-991866207: 19315: *** alloc: at 'sort.c:638' for 48 bytes, got '0x83b5400|s1'
-991866207: 19316: *** alloc: at 'sort.c:720' for 48 bytes, got '0x83b5440|s1'
-991866207: 19317: *** alloc: at 'sort.c:802' for 48 bytes, got '0x83b5480|s1'
-991866207: 19318: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b54c0|s1'
-991866207: 19319: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b31c0|s3'
-991866207: 19320: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5500|s1'
-991866207: 19321: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5540|s1'
-991866207: 19322: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3340|s1'
-991866207: 19323: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3360|s1'
-991866207: 19324: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3240|s3'
-991866207: 19325: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5580|s1'
-991866207: 19326: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b55c0|s1'
-991866207: 19327: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3380|s1'
-991866207: 19328: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b33a0|s1'
-991866207: 19329: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b33c0|s1'
-991866207: 19330: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b33e0|s1'
-991866207: 19331: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3400|s1'
-991866207: 19332: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3420|s1'
-991866207: 19333: *** alloc: at 'sort.c:1693' for 8 bytes, got '0x83b32c0|s3'
-991866207: 19334: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5600|s1'
-991866207: 19335: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5640|s1'
-991866207: 19336: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b3440|s1'
-991866207: 19337: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3460|s1'
-991866207: 19338: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5680|s1'
-991866207: 19339: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b56c0|s1'
-991866207: 19340: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3480|s1'
-991866207: 19341: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b34a0|s1'
-991866207: 19342: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b34c0|s1'
-991866207: 19343: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b34e0|s1'
-991866207: 19344: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3500|s1'
-991866207: 19345: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3520|s1'
-991866207: 19346: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5700|s1'
-991866207: 19347: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b3540|s1'
-991866207: 19348: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5740|s1'
-991866207: 19349: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5780|s1'
-991866207: 19350: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3560|s1'
-991866207: 19351: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3580|s1'
-991866207: 19352: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b35a0|s1'
-991866207: 19353: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b57c0|s1'
-991866207: 19354: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5800|s1'
-991866207: 19355: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b35c0|s1'
-991866207: 19356: *** free: at 'ltoken.c:320' pnt '0x83b5740|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19357: *** free: at 'ltoken.c:320' pnt '0x83b5780|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19358: *** free: at 'abstract.c:5688' pnt '0x83b3540|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19359: *** free: at 'abstract.c:5702' pnt '0x83b3560|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19360: *** alloc: at 'sort.c:1693' for 8 bytes, got '0x83b35e0|s1'
-991866207: 19361: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5840|s1'
-991866207: 19362: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5880|s1'
-991866207: 19363: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b3600|s1'
-991866207: 19364: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3620|s1'
-991866207: 19365: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b58c0|s1'
-991866207: 19366: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5900|s1'
-991866207: 19367: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3640|s1'
-991866207: 19368: *** free: at 'abstract.c:5702' pnt '0x83b35e0|s2': size 8, alloced at 'sort.c:1693'
-991866207: 19369: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b3660|s1'
-991866207: 19370: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5940|s1'
-991866207: 19371: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5980|s1'
-991866207: 19372: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3680|s1'
-991866207: 19373: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b59c0|s1'
-991866207: 19374: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5a00|s1'
-991866207: 19375: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b36a0|s1'
-991866207: 19376: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b36c0|s1'
-991866207: 19377: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b36e0|s1'
-991866207: 19378: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b3540|s3'
-991866207: 19379: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3560|s3'
-991866207: 19380: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3700|s1'
-991866207: 19381: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3720|s1'
-991866207: 19382: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3740|s1'
-991866207: 19383: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5780|s3'
-991866207: 19384: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b3760|s1'
-991866207: 19385: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3780|s1'
-991866207: 19386: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b37a0|s1'
-991866207: 19387: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b37c0|s1'
-991866207: 19388: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5740|s3'
-991866207: 19389: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5a40|s1'
-991866207: 19390: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b35e0|s3'
-991866207: 19391: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b37e0|s1'
-991866207: 19392: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3800|s1'
-991866207: 19393: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3820|s1'
-991866207: 19394: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3840|s1'
-991866207: 19395: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3860|s1'
-991866207: 19396: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5a80|s1'
-991866207: 19397: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b3880|s1'
-991866207: 19398: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b38a0|s1'
-991866207: 19399: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b38c0|s1'
-991866207: 19400: checking heap
-991866207: 19400: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b38e0|s1'
-991866207: 19401: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5ac0|s1'
-991866207: 19402: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5b00|s1'
-991866207: 19403: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3900|s1'
-991866207: 19404: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b3920|s1'
-991866207: 19405: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3940|s1'
-991866207: 19406: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3960|s1'
-991866207: 19407: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3980|s1'
-991866207: 19408: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b39a0|s1'
-991866207: 19409: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b39c0|s1'
-991866207: 19410: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b39e0|s1'
-991866207: 19411: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5b40|s1'
-991866207: 19412: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5b80|s1'
-991866207: 19413: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3a00|s1'
-991866207: 19414: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3a20|s1'
-991866207: 19415: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3a40|s1'
-991866207: 19416: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5bc0|s1'
-991866207: 19417: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83b3a60|s1'
-991866207: 19418: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b3a80|s1'
-991866207: 19419: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3aa0|s1'
-991866207: 19420: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3ac0|s1'
-991866207: 19421: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3ae0|s1'
-991866207: 19422: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3b00|s1'
-991866207: 19423: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5c00|s1'
-991866207: 19424: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5c40|s1'
-991866207: 19425: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5c80|s1'
-991866207: 19426: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3b20|s1'
-991866207: 19427: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b3b40|s1'
-991866207: 19428: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3b60|s1'
-991866207: 19429: *** free: at 'abstract.c:5688' pnt '0x83b3b40|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19430: *** free: at 'abstract.c:5702' pnt '0x83b3b60|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19431: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3b80|s1'
-991866207: 19432: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3ba0|s1'
-991866207: 19433: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5cc0|s1'
-991866207: 19434: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5d00|s1'
-991866207: 19435: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3bc0|s1'
-991866207: 19436: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b3be0|s1'
-991866207: 19437: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3c00|s1'
-991866207: 19438: *** free: at 'abstract.c:5688' pnt '0x83b3be0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19439: *** free: at 'abstract.c:5702' pnt '0x83b3c00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19440: *** alloc: at 'sort.c:569' for 48 bytes, got '0x83b5d40|s1'
-991866207: 19441: *** free: at 'sort.c:171' pnt '0x83b5d40|s2': size 48, alloced at 'sort.c:569'
-991866207: 19442: *** alloc: at 'sort.c:720' for 48 bytes, got '0x83b5d80|s1'
-991866207: 19443: *** free: at 'sort.c:171' pnt '0x83b5d80|s2': size 48, alloced at 'sort.c:720'
-991866207: 19444: *** alloc: at 'sort.c:802' for 48 bytes, got '0x83b5dc0|s1'
-991866207: 19445: *** free: at 'sort.c:171' pnt '0x83b5dc0|s2': size 48, alloced at 'sort.c:802'
-991866207: 19446: *** alloc: at 'sort.c:351' for 48 bytes, got '0x83b5e00|s1'
-991866207: 19447: *** alloc: at 'sort.c:1729' for 8 bytes, got '0x83b3c20|s1'
-991866207: 19448: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5e40|s1'
-991866207: 19449: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5e80|s1'
-991866207: 19450: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5ec0|s1'
-991866207: 19451: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b3b60|s3'
-991866207: 19452: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3b40|s3'
-991866207: 19453: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3c40|s1'
-991866207: 19454: *** free: at 'abstract.c:5702' pnt '0x83b3c20|s2': size 8, alloced at 'sort.c:1729'
-991866207: 19455: *** alloc: at 'sort.c:351' for 48 bytes, got '0x83b5f00|s1'
-991866207: 19456: *** alloc: at 'sort.c:1729' for 8 bytes, got '0x83b3c60|s1'
-991866207: 19457: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5f40|s1'
-991866207: 19458: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5f80|s1'
-991866207: 19459: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5fc0|s1'
-991866207: 19460: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b3c00|s3'
-991866207: 19461: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b3be0|s3'
-991866207: 19462: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3c80|s1'
-991866207: 19463: *** free: at 'abstract.c:5702' pnt '0x83b3c60|s2': size 8, alloced at 'sort.c:1729'
-991866207: 19464: *** alloc: at 'abstract.c:111' for 20 bytes, got '0x83b3ca0|s1'
-991866207: 19465: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3cc0|s1'
-991866207: 19466: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3ce0|s1'
-991866207: 19467: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5dc0|s3'
-991866207: 19468: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b5d80|s3'
-991866207: 19469: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b5d40|s3'
-991866207: 19470: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3d00|s1'
-991866207: 19471: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3d20|s1'
-991866207: 19472: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6000|s1'
-991866207: 19473: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6040|s1'
-991866207: 19474: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3c20|s3'
-991866207: 19475: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b3d40|s1'
-991866207: 19476: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3d60|s1'
-991866207: 19477: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b3d80|s1'
-991866207: 19478: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3da0|s1'
-991866207: 19479: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3dc0|s1'
-991866207: 19480: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3de0|s1'
-991866207: 19481: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3e00|s1'
-991866207: 19482: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3e20|s1'
-991866207: 19483: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b3c60|s3'
-991866207: 19484: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3e40|s1'
-991866207: 19485: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6080|s1'
-991866207: 19486: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3e60|s1'
-991866207: 19487: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3e80|s1'
-991866207: 19488: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b60c0|s1'
-991866207: 19489: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6100|s1'
-991866207: 19490: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3ea0|s1'
-991866207: 19491: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b3ec0|s1'
-991866207: 19492: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b3ee0|s1'
-991866207: 19493: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b3f00|s1'
-991866207: 19494: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b3f20|s1'
-991866207: 19495: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b3f40|s1'
-991866207: 19496: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b3f60|s1'
-991866207: 19497: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b3f80|s1'
-991866207: 19498: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6140|s1'
-991866207: 19499: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b3fa0|s1'
-991866207: 19500: checking heap
-991866207: 19500: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b3fc0|s1'
-991866207: 19501: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6180|s1'
-991866207: 19502: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b61c0|s1'
-991866207: 19503: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b3fe0|s1'
-991866207: 19504: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b8000|s1'
-991866207: 19505: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b8020|s1'
-991866207: 19506: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b8040|s1'
-991866207: 19507: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b8060|s1'
-991866207: 19508: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b8080|s1'
-991866207: 19509: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b80a0|s1'
-991866207: 19510: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b80c0|s1'
-991866207: 19511: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b80e0|s1'
-991866207: 19512: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b8100|s1'
-991866207: 19513: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b8120|s1'
-991866207: 19514: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b8140|s1'
-991866207: 19515: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b8160|s1'
-991866207: 19516: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b6200|s1'
-991866207: 19517: *** alloc: at 'mapping.c:113' for 12 bytes, got '0x83b8180|s1'
-991866207: 19518: *** alloc: at 'abstract.c:218' for 20 bytes, got '0x83b81a0|s1'
-991866207: 19519: *** alloc: at 'abstract.c:219' for 16 bytes, got '0x83b81c0|s1'
-991866207: 19520: *** alloc: at 'sort.c:909' for 48 bytes, got '0x83b6240|s1'
-991866207: 19521: *** free: at 'sort.c:171' pnt '0x83b6240|s2': size 48, alloced at 'sort.c:909'
-991866207: 19522: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b6280|s1'
-991866207: 19523: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b81e0|s1'
-991866207: 19524: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8200|s1'
-991866207: 19525: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8220|s1'
-991866207: 19526: *** alloc: at 'abstract.c:281' for 8 bytes, got '0x83b8240|s1'
-991866207: 19527: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b62c0|s1'
-991866207: 19528: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b8260|s1'
-991866207: 19529: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b8280|s1'
-991866207: 19530: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b82a0|s1'
-991866207: 19531: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b82c0|s1'
-991866207: 19532: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b82e0|s1'
-991866207: 19533: *** alloc: at 'abstract.c:288' for 8 bytes, got '0x83b8300|s1'
-991866207: 19534: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b6300|s1'
-991866207: 19535: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6340|s1'
-991866207: 19536: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8320|s1'
-991866207: 19537: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8340|s1'
-991866207: 19538: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8360|s1'
-991866207: 19539: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b8380|s1'
-991866207: 19540: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b83a0|s1'
-991866207: 19541: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b83c0|s1'
-991866207: 19542: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b83e0|s1'
-991866207: 19543: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b8400|s1'
-991866207: 19544: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6240|s3'
-991866207: 19545: *** alloc: at 'mapping.c:113' for 12 bytes, got '0x83b8420|s1'
-991866207: 19546: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b6380|s1'
-991866207: 19547: *** alloc: at 'symtable.c:133' for 16 bytes, got '0x83b8440|s1'
-991866207: 19548: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b63c0|s1'
-991866207: 19549: *** alloc: at 'symtable.c:133' for 16 bytes, got '0x83b8460|s1'
-991866207: 19550: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6400|s1'
-991866207: 19551: *** free: at 'ltoken.c:320' pnt '0x83b6380|s2': size 36, alloced at 'ltoken.c:76'
-991866207: 19552: *** free: at 'symtable.c:128' pnt '0x83b81c0|s2': size 16, alloced at 'abstract.c:219'
-991866207: 19553: *** alloc: at 'osd.c:203' for 39 bytes, got '0x83b6440|s1'
-991866207: 19554: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83b8480|s1'
-991866207: 19555: *** alloc: at 'lslparse.c:58' for 4 bytes, got '0x83b84a0|s1'
-991866207: 19556: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83b6480|s1'
-991866207: 19557: *** alloc: at 'ra=0x80a560f' for 840 bytes, got '0x83b1400|s1'
-991866207: 19558: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83b84c0|s1'
-991866207: 19559: *** alloc: at 'osd.c:203' for 39 bytes, got '0x83b64c0|s1'
-991866207: 19560: *** free: at 'ra=0x80a28ed' pnt '0x83b84c0|s2': size 12, alloced at 'ra=0x80e6889'
-991866207: 19561: *** alloc: at 'ra=0x80e6889' for 39 bytes, got '0x83b6500|s1'
-991866207: 19562: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d200|s5'
-991866207: 19563: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6540|s1'
-991866207: 19564: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6580|s1'
-991866207: 19565: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b65c0|s1'
-991866207: 19566: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6600|s1'
-991866207: 19567: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83b84e0|s1'
-991866207: 19568: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8500|s1'
-991866207: 19569: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8520|s1'
-991866207: 19570: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8540|s1'
-991866207: 19571: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8560|s1'
-991866207: 19572: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6380|s3'
-991866207: 19573: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b81c0|s3'
-991866207: 19574: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8580|s1'
-991866207: 19575: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6640|s1'
-991866207: 19576: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b85a0|s1'
-991866207: 19577: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6680|s1'
-991866207: 19578: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83b85c0|s1'
-991866207: 19579: *** free: at 'abstract.c:5702' pnt '0x83b85c0|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 19580: *** free: at 'ltokenList.c:228' pnt '0x83b8580|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 19581: *** free: at 'ltokenList.c:229' pnt '0x83b81c0|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 19582: *** free: at 'ltoken.c:320' pnt '0x83b6640|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19583: *** free: at 'ltoken.c:320' pnt '0x83b6380|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19584: *** free: at 'abstract.c:5728' pnt '0x83b85a0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 19585: *** alloc: at 'lslOpList.c:38' for 12 bytes, got '0x83b84c0|s3'
-991866207: 19586: *** alloc: at 'lslOpList.c:43' for 16 bytes, got '0x83b85e0|s1'
-991866207: 19587: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b66c0|s1'
-991866207: 19588: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6700|s1'
-991866207: 19589: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6740|s1'
-991866207: 19590: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6780|s1'
-991866207: 19591: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83b8600|s1'
-991866207: 19592: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8620|s1'
-991866207: 19593: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8640|s1'
-991866207: 19594: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8660|s1'
-991866207: 19595: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8680|s1'
-991866207: 19596: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b67c0|s1'
-991866207: 19597: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b86a0|s1'
-991866207: 19598: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b86c0|s1'
-991866207: 19599: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6800|s1'
-991866207: 19600: checking heap
-991866207: 19600: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8580|s3'
-991866207: 19601: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6840|s1'
-991866207: 19602: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83b81c0|s5'
-991866207: 19603: *** free: at 'abstract.c:5702' pnt '0x83b81c0|s6': size 8, alloced at 'abstract.c:1322'
-991866207: 19604: *** free: at 'ltokenList.c:228' pnt '0x83b86c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 19605: *** free: at 'ltokenList.c:229' pnt '0x83b86a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 19606: *** free: at 'ltoken.c:320' pnt '0x83b6800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19607: *** free: at 'ltoken.c:320' pnt '0x83b67c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19608: *** free: at 'abstract.c:5728' pnt '0x83b8580|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 19609: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6380|s5'
-991866207: 19610: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6640|s3'
-991866207: 19611: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6880|s1'
-991866207: 19612: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b68c0|s1'
-991866207: 19613: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6900|s1'
-991866207: 19614: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6940|s1'
-991866207: 19615: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b85a0|s3'
-991866207: 19616: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b85c0|s3'
-991866207: 19617: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b86e0|s1'
-991866207: 19618: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8700|s1'
-991866207: 19619: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8720|s1'
-991866207: 19620: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8740|s1'
-991866207: 19621: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6980|s1'
-991866207: 19622: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8760|s1'
-991866207: 19623: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b81c0|s7'
-991866207: 19624: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b69c0|s1'
-991866207: 19625: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6a00|s1'
-991866207: 19626: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b86a0|s3'
-991866207: 19627: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b86c0|s3'
-991866207: 19628: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b67c0|s3'
-991866207: 19629: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8580|s5'
-991866207: 19630: *** free: at 'ltoken.c:320' pnt '0x83b67c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19631: *** free: at 'abstract.c:5688' pnt '0x83b86c0|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 19632: *** free: at 'abstract.c:5702' pnt '0x83b8580|s6': size 8, alloced at 'abstract.c:1311'
-991866207: 19633: *** free: at 'ltokenList.c:228' pnt '0x83b81c0|s8': size 16, alloced at 'ltokenList.c:43'
-991866207: 19634: *** free: at 'ltokenList.c:229' pnt '0x83b8760|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 19635: *** free: at 'ltoken.c:320' pnt '0x83b6a00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19636: *** free: at 'ltoken.c:320' pnt '0x83b6980|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19637: *** free: at 'abstract.c:5728' pnt '0x83b86a0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 19638: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6800|s3'
-991866207: 19639: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6a40|s1'
-991866207: 19640: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6a80|s1'
-991866207: 19641: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6ac0|s1'
-991866207: 19642: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6b00|s1'
-991866207: 19643: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6b40|s1'
-991866207: 19644: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6b80|s1'
-991866207: 19645: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6bc0|s1'
-991866207: 19646: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c00|s1'
-991866207: 19647: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8780|s1'
-991866207: 19648: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b87a0|s1'
-991866207: 19649: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b87c0|s1'
-991866207: 19650: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b87e0|s1'
-991866207: 19651: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b86c0|s5'
-991866207: 19652: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8580|s7'
-991866207: 19653: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b67c0|s5'
-991866207: 19654: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8760|s3'
-991866207: 19655: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b81c0|s9'
-991866207: 19656: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6980|s3'
-991866207: 19657: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6a00|s3'
-991866207: 19658: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c40|s1'
-991866207: 19659: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b86a0|s5'
-991866207: 19660: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8800|s1'
-991866207: 19661: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c80|s1'
-991866207: 19662: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8820|s1'
-991866207: 19663: *** free: at 'ltoken.c:320' pnt '0x83b6c80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19664: *** free: at 'abstract.c:5688' pnt '0x83b8800|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19665: *** free: at 'abstract.c:5702' pnt '0x83b8820|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19666: *** free: at 'ltokenList.c:228' pnt '0x83b81c0|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 19667: *** free: at 'ltokenList.c:229' pnt '0x83b8760|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 19668: *** free: at 'ltoken.c:320' pnt '0x83b6c40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19669: *** free: at 'ltoken.c:320' pnt '0x83b67c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19670: *** free: at 'abstract.c:5728' pnt '0x83b86a0|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 19671: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6cc0|s1'
-991866207: 19672: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6d00|s1'
-991866207: 19673: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6d40|s1'
-991866207: 19674: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6d80|s1'
-991866207: 19675: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6dc0|s1'
-991866207: 19676: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6e00|s1'
-991866207: 19677: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6e40|s1'
-991866207: 19678: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6e80|s1'
-991866207: 19679: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6ec0|s1'
-991866207: 19680: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8840|s1'
-991866207: 19681: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8860|s1'
-991866207: 19682: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8880|s1'
-991866207: 19683: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b88a0|s1'
-991866207: 19684: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8800|s3'
-991866207: 19685: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8820|s3'
-991866207: 19686: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c80|s3'
-991866207: 19687: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8760|s5'
-991866207: 19688: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b81c0|s11'
-991866207: 19689: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b67c0|s7'
-991866207: 19690: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c40|s3'
-991866207: 19691: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6f00|s1'
-991866207: 19692: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b86a0|s7'
-991866207: 19693: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b88c0|s1'
-991866207: 19694: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6f40|s1'
-991866207: 19695: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b88e0|s1'
-991866207: 19696: *** free: at 'ltoken.c:320' pnt '0x83b6f40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19697: *** free: at 'abstract.c:5688' pnt '0x83b88c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19698: *** free: at 'abstract.c:5702' pnt '0x83b88e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19699: *** free: at 'ltokenList.c:228' pnt '0x83b81c0|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 19700: checking heap
-991866207: 19700: *** free: at 'ltokenList.c:229' pnt '0x83b8760|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 19701: *** free: at 'ltoken.c:320' pnt '0x83b6f00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19702: *** free: at 'ltoken.c:320' pnt '0x83b6c80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19703: *** free: at 'abstract.c:5728' pnt '0x83b86a0|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 19704: *** alloc: at 'lslOpList.c:56' for 32 bytes, got '0x83b8900|s1'
-991866207: 19705: *** free: at 'lslOpList.c:69' pnt '0x83b85e0|s2': size 16, alloced at 'lslOpList.c:43'
-991866207: 19706: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6f80|s1'
-991866207: 19707: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6fc0|s1'
-991866207: 19708: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba000|s1'
-991866207: 19709: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba040|s1'
-991866207: 19710: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba080|s1'
-991866207: 19711: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba0c0|s1'
-991866207: 19712: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba100|s1'
-991866207: 19713: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba140|s1'
-991866207: 19714: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba180|s1'
-991866207: 19715: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8920|s1'
-991866207: 19716: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8940|s1'
-991866207: 19717: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b88c0|s3'
-991866207: 19718: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b88e0|s3'
-991866207: 19719: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b81c0|s13'
-991866207: 19720: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8760|s7'
-991866207: 19721: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba1c0|s1'
-991866207: 19722: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8960|s1'
-991866207: 19723: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b86a0|s9'
-991866207: 19724: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba200|s1'
-991866207: 19725: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba240|s1'
-991866207: 19726: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba280|s1'
-991866207: 19727: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b85e0|s3'
-991866207: 19728: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8980|s1'
-991866207: 19729: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba2c0|s1'
-991866207: 19730: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b89a0|s1'
-991866207: 19731: *** free: at 'ltoken.c:320' pnt '0x83ba2c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19732: *** free: at 'abstract.c:5688' pnt '0x83b8980|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19733: *** free: at 'abstract.c:5702' pnt '0x83b89a0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19734: *** free: at 'ltokenList.c:228' pnt '0x83b86a0|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 19735: *** free: at 'ltokenList.c:229' pnt '0x83b8960|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 19736: *** free: at 'ltoken.c:320' pnt '0x83ba280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19737: *** free: at 'ltoken.c:320' pnt '0x83ba1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19738: *** free: at 'abstract.c:5728' pnt '0x83b85e0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 19739: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba300|s1'
-991866207: 19740: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba340|s1'
-991866207: 19741: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba380|s1'
-991866207: 19742: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba3c0|s1'
-991866207: 19743: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba400|s1'
-991866207: 19744: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba440|s1'
-991866207: 19745: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba480|s1'
-991866207: 19746: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba4c0|s1'
-991866207: 19747: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba500|s1'
-991866207: 19748: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b89c0|s1'
-991866207: 19749: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b89e0|s1'
-991866207: 19750: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8a00|s1'
-991866207: 19751: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8a20|s1'
-991866207: 19752: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8980|s3'
-991866207: 19753: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b89a0|s3'
-991866207: 19754: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba2c0|s3'
-991866207: 19755: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8960|s3'
-991866207: 19756: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b86a0|s11'
-991866207: 19757: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba1c0|s3'
-991866207: 19758: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba280|s3'
-991866207: 19759: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba540|s1'
-991866207: 19760: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b85e0|s5'
-991866207: 19761: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8a40|s1'
-991866207: 19762: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba580|s1'
-991866207: 19763: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8a60|s1'
-991866207: 19764: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83b8a80|s1'
-991866207: 19765: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83b8aa0|s1'
-991866207: 19766: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83b8ac0|s1'
-991866207: 19767: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83b8ae0|s1'
-991866207: 19768: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83b8b00|s1'
-991866207: 19769: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba5c0|s1'
-991866207: 19770: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba600|s1'
-991866207: 19771: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba640|s1'
-991866207: 19772: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba680|s1'
-991866207: 19773: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba6c0|s1'
-991866207: 19774: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba700|s1'
-991866207: 19775: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba740|s1'
-991866207: 19776: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba780|s1'
-991866207: 19777: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba7c0|s1'
-991866207: 19778: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8b20|s1'
-991866207: 19779: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8b40|s1'
-991866207: 19780: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8b60|s1'
-991866207: 19781: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8b80|s1'
-991866207: 19782: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8ba0|s1'
-991866207: 19783: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8bc0|s1'
-991866207: 19784: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba800|s1'
-991866207: 19785: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8be0|s1'
-991866207: 19786: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8c00|s1'
-991866207: 19787: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba840|s1'
-991866207: 19788: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba880|s1'
-991866207: 19789: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba8c0|s1'
-991866207: 19790: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8c20|s1'
-991866207: 19791: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8c40|s1'
-991866207: 19792: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba900|s1'
-991866207: 19793: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8c60|s1'
-991866207: 19794: *** free: at 'ltoken.c:320' pnt '0x83ba900|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19795: *** free: at 'abstract.c:5688' pnt '0x83b8c40|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19796: *** free: at 'abstract.c:5702' pnt '0x83b8c60|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19797: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba940|s1'
-991866207: 19798: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba980|s1'
-991866207: 19799: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba9c0|s1'
-991866207: 19800: checking heap
-991866207: 19800: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baa00|s1'
-991866207: 19801: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83baa40|s1'
-991866207: 19802: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baa80|s1'
-991866207: 19803: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baac0|s1'
-991866207: 19804: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bab00|s1'
-991866207: 19805: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bab40|s1'
-991866207: 19806: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bab80|s1'
-991866207: 19807: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8c80|s1'
-991866207: 19808: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8ca0|s1'
-991866207: 19809: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8cc0|s1'
-991866207: 19810: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8ce0|s1'
-991866207: 19811: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8d00|s1'
-991866207: 19812: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8d20|s1'
-991866207: 19813: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83babc0|s1'
-991866207: 19814: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8d40|s1'
-991866207: 19815: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8c40|s3'
-991866207: 19816: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ba900|s3'
-991866207: 19817: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bac00|s1'
-991866207: 19818: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bac40|s1'
-991866207: 19819: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8c60|s3'
-991866207: 19820: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8d60|s1'
-991866207: 19821: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bac80|s1'
-991866207: 19822: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8d80|s1'
-991866207: 19823: *** free: at 'ltoken.c:320' pnt '0x83bac80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19824: *** free: at 'abstract.c:5688' pnt '0x83b8d60|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19825: *** free: at 'abstract.c:5702' pnt '0x83b8d80|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19826: *** alloc: at 'lslOpList.c:56' for 48 bytes, got '0x83bacc0|s1'
-991866207: 19827: *** free: at 'lslOpList.c:69' pnt '0x83b8900|s2': size 32, alloced at 'lslOpList.c:56'
-991866207: 19828: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bad00|s1'
-991866207: 19829: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bad40|s1'
-991866207: 19830: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bad80|s1'
-991866207: 19831: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83badc0|s1'
-991866207: 19832: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83bae00|s1'
-991866207: 19833: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bae40|s1'
-991866207: 19834: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bae80|s1'
-991866207: 19835: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baec0|s1'
-991866207: 19836: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baf00|s1'
-991866207: 19837: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baf40|s1'
-991866207: 19838: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8da0|s1'
-991866207: 19839: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8dc0|s1'
-991866207: 19840: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8de0|s1'
-991866207: 19841: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8e00|s1'
-991866207: 19842: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8e20|s1'
-991866207: 19843: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8e40|s1'
-991866207: 19844: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bac80|s3'
-991866207: 19845: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8d80|s3'
-991866207: 19846: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8d60|s3'
-991866207: 19847: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83baf80|s1'
-991866207: 19848: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bafc0|s1'
-991866207: 19849: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c80|s5'
-991866207: 19850: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8900|s3'
-991866207: 19851: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8e60|s1'
-991866207: 19852: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6f00|s3'
-991866207: 19853: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8e80|s1'
-991866207: 19854: *** free: at 'ltoken.c:320' pnt '0x83b6f00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19855: *** free: at 'abstract.c:5688' pnt '0x83b8e60|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19856: *** free: at 'abstract.c:5702' pnt '0x83b8e80|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19857: *** free: at 'ltokenList.c:228' pnt '0x83b8d60|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 19858: *** free: at 'ltokenList.c:229' pnt '0x83b8d80|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 19859: *** free: at 'ltoken.c:320' pnt '0x83b6c80|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 19860: *** free: at 'ltoken.c:320' pnt '0x83bac80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 19861: *** free: at 'abstract.c:5728' pnt '0x83b8900|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 19862: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6f40|s3'
-991866207: 19863: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb000|s1'
-991866207: 19864: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb040|s1'
-991866207: 19865: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb080|s1'
-991866207: 19866: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83bb0c0|s1'
-991866207: 19867: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb100|s1'
-991866207: 19868: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb140|s1'
-991866207: 19869: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb180|s1'
-991866207: 19870: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb1c0|s1'
-991866207: 19871: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb200|s1'
-991866207: 19872: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8ea0|s1'
-991866207: 19873: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8ec0|s1'
-991866207: 19874: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8ee0|s1'
-991866207: 19875: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8e60|s3'
-991866207: 19876: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8e80|s3'
-991866207: 19877: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83b8d60|s5'
-991866207: 19878: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb240|s1'
-991866207: 19879: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8d80|s5'
-991866207: 19880: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8f00|s1'
-991866207: 19881: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb280|s1'
-991866207: 19882: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb2c0|s1'
-991866207: 19883: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb300|s1'
-991866207: 19884: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8900|s5'
-991866207: 19885: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b8f20|s1'
-991866207: 19886: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb340|s1'
-991866207: 19887: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8f40|s1'
-991866207: 19888: *** free: at 'ltoken.c:320' pnt '0x83bb340|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19889: *** free: at 'abstract.c:5688' pnt '0x83b8f20|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19890: *** free: at 'abstract.c:5702' pnt '0x83b8f40|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19891: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb380|s1'
-991866207: 19892: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb3c0|s1'
-991866207: 19893: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb400|s1'
-991866207: 19894: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb440|s1'
-991866207: 19895: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83bb480|s1'
-991866207: 19896: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb4c0|s1'
-991866207: 19897: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb500|s1'
-991866207: 19898: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb540|s1'
-991866207: 19899: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb580|s1'
-991866207: 19900: checking heap
-991866207: 19900: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb5c0|s1'
-991866207: 19901: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83b8f60|s1'
-991866207: 19902: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83b8f80|s1'
-991866207: 19903: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83b8fa0|s1'
-991866207: 19904: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b8fc0|s1'
-991866207: 19905: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b8fe0|s1'
-991866207: 19906: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd000|s1'
-991866207: 19907: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb600|s1'
-991866207: 19908: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd020|s1'
-991866207: 19909: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd040|s1'
-991866207: 19910: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb340|s3'
-991866207: 19911: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb640|s1'
-991866207: 19912: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb680|s1'
-991866207: 19913: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd060|s1'
-991866207: 19914: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd080|s1'
-991866207: 19915: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb6c0|s1'
-991866207: 19916: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd0a0|s1'
-991866207: 19917: *** free: at 'ltoken.c:320' pnt '0x83bb6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19918: *** free: at 'abstract.c:5688' pnt '0x83bd080|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19919: *** free: at 'abstract.c:5702' pnt '0x83bd0a0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19920: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb700|s1'
-991866207: 19921: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb740|s1'
-991866207: 19922: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb780|s1'
-991866207: 19923: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb7c0|s1'
-991866207: 19924: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb800|s1'
-991866207: 19925: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb840|s1'
-991866207: 19926: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb880|s1'
-991866207: 19927: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb8c0|s1'
-991866207: 19928: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb900|s1'
-991866207: 19929: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd0c0|s1'
-991866207: 19930: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd0e0|s1'
-991866207: 19931: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd100|s1'
-991866207: 19932: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd120|s1'
-991866207: 19933: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd140|s1'
-991866207: 19934: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd160|s1'
-991866207: 19935: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb940|s1'
-991866207: 19936: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd180|s1'
-991866207: 19937: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd1a0|s1'
-991866207: 19938: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb6c0|s3'
-991866207: 19939: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb980|s1'
-991866207: 19940: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bb9c0|s1'
-991866207: 19941: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd0a0|s3'
-991866207: 19942: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd080|s3'
-991866207: 19943: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bba00|s1'
-991866207: 19944: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd1c0|s1'
-991866207: 19945: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83bd1e0|s1'
-991866207: 19946: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83bd200|s1'
-991866207: 19947: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83bd220|s1'
-991866207: 19948: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83bd240|s1'
-991866207: 19949: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83bd260|s1'
-991866207: 19950: *** alloc: at 'lslOpList.c:56' for 64 bytes, got '0x83bba40|s1'
-991866207: 19951: *** free: at 'lslOpList.c:69' pnt '0x83bacc0|s2': size 48, alloced at 'lslOpList.c:56'
-991866207: 19952: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bba80|s1'
-991866207: 19953: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbac0|s1'
-991866207: 19954: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbb00|s1'
-991866207: 19955: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbb40|s1'
-991866207: 19956: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbb80|s1'
-991866207: 19957: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbbc0|s1'
-991866207: 19958: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbc00|s1'
-991866207: 19959: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbc40|s1'
-991866207: 19960: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbc80|s1'
-991866207: 19961: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd280|s1'
-991866207: 19962: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd2a0|s1'
-991866207: 19963: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd2c0|s1'
-991866207: 19964: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd2e0|s1'
-991866207: 19965: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd300|s1'
-991866207: 19966: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd320|s1'
-991866207: 19967: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbcc0|s1'
-991866207: 19968: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd340|s1'
-991866207: 19969: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd360|s1'
-991866207: 19970: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbd00|s1'
-991866207: 19971: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bacc0|s3'
-991866207: 19972: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbd40|s1'
-991866207: 19973: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd380|s1'
-991866207: 19974: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd3a0|s1'
-991866207: 19975: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbd80|s1'
-991866207: 19976: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd3c0|s1'
-991866207: 19977: *** free: at 'ltoken.c:320' pnt '0x83bbd80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 19978: *** free: at 'abstract.c:5688' pnt '0x83bd3a0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 19979: *** free: at 'abstract.c:5702' pnt '0x83bd3c0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 19980: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbdc0|s1'
-991866207: 19981: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbe00|s1'
-991866207: 19982: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbe40|s1'
-991866207: 19983: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbe80|s1'
-991866207: 19984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbec0|s1'
-991866207: 19985: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbf00|s1'
-991866207: 19986: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbf40|s1'
-991866207: 19987: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbf80|s1'
-991866207: 19988: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbfc0|s1'
-991866207: 19989: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd3e0|s1'
-991866207: 19990: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd400|s1'
-991866207: 19991: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd420|s1'
-991866207: 19992: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd440|s1'
-991866207: 19993: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd460|s1'
-991866207: 19994: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd480|s1'
-991866207: 19995: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bac80|s5'
-991866207: 19996: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd4a0|s1'
-991866207: 19997: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd4c0|s1'
-991866207: 19998: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bbd80|s3'
-991866207: 19999: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6c80|s7'
-991866207: 20000: checking heap
-991866207: 20000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6f00|s5'
-991866207: 20001: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd3c0|s3'
-991866207: 20002: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd3a0|s3'
-991866207: 20003: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf000|s1'
-991866207: 20004: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd4e0|s1'
-991866207: 20005: *** free: at 'ltoken.c:320' pnt '0x83bf000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20006: *** free: at 'abstract.c:5688' pnt '0x83bd3a0|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 20007: *** free: at 'abstract.c:5702' pnt '0x83bd4e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20008: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf040|s1'
-991866207: 20009: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf080|s1'
-991866207: 20010: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf0c0|s1'
-991866207: 20011: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf100|s1'
-991866207: 20012: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf140|s1'
-991866207: 20013: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf180|s1'
-991866207: 20014: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf1c0|s1'
-991866207: 20015: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf200|s1'
-991866207: 20016: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf240|s1'
-991866207: 20017: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd500|s1'
-991866207: 20018: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd520|s1'
-991866207: 20019: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd540|s1'
-991866207: 20020: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd560|s1'
-991866207: 20021: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd580|s1'
-991866207: 20022: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd5a0|s1'
-991866207: 20023: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf280|s1'
-991866207: 20024: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd5c0|s1'
-991866207: 20025: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd5e0|s1'
-991866207: 20026: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf000|s3'
-991866207: 20027: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf2c0|s1'
-991866207: 20028: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf300|s1'
-991866207: 20029: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd4e0|s3'
-991866207: 20030: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd3a0|s5'
-991866207: 20031: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf340|s1'
-991866207: 20032: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd600|s1'
-991866207: 20033: *** free: at 'ltoken.c:320' pnt '0x83bf340|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20034: *** free: at 'abstract.c:5688' pnt '0x83bd3a0|s6': size 20, alloced at 'abstract.c:5666'
-991866207: 20035: *** free: at 'abstract.c:5702' pnt '0x83bd600|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20036: *** free: at 'ltokenList.c:228' pnt '0x83bd5e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 20037: *** free: at 'ltokenList.c:229' pnt '0x83bd5c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 20038: *** free: at 'ltoken.c:320' pnt '0x83bf300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20039: *** free: at 'ltoken.c:320' pnt '0x83bf280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20040: *** free: at 'abstract.c:5728' pnt '0x83bd4e0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 20041: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf380|s1'
-991866207: 20042: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf3c0|s1'
-991866207: 20043: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf400|s1'
-991866207: 20044: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf440|s1'
-991866207: 20045: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf480|s1'
-991866207: 20046: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf4c0|s1'
-991866207: 20047: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf500|s1'
-991866207: 20048: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf540|s1'
-991866207: 20049: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf580|s1'
-991866207: 20050: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd620|s1'
-991866207: 20051: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd640|s1'
-991866207: 20052: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd660|s1'
-991866207: 20053: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd680|s1'
-991866207: 20054: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd3a0|s7'
-991866207: 20055: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd600|s3'
-991866207: 20056: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf340|s3'
-991866207: 20057: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd5c0|s3'
-991866207: 20058: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd5e0|s3'
-991866207: 20059: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf280|s3'
-991866207: 20060: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf300|s3'
-991866207: 20061: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf5c0|s1'
-991866207: 20062: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd4e0|s5'
-991866207: 20063: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd6a0|s1'
-991866207: 20064: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf600|s1'
-991866207: 20065: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd6c0|s1'
-991866207: 20066: *** free: at 'ltoken.c:320' pnt '0x83bf600|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20067: *** free: at 'abstract.c:5688' pnt '0x83bd6a0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20068: *** free: at 'abstract.c:5702' pnt '0x83bd6c0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20069: *** alloc: at 'lslOpList.c:56' for 80 bytes, got '0x83a3600|s1'
-991866207: 20070: *** free: at 'lslOpList.c:69' pnt '0x83bba40|s2': size 64, alloced at 'lslOpList.c:56'
-991866207: 20071: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf640|s1'
-991866207: 20072: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf680|s1'
-991866207: 20073: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf6c0|s1'
-991866207: 20074: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf700|s1'
-991866207: 20075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf740|s1'
-991866207: 20076: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf780|s1'
-991866207: 20077: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf7c0|s1'
-991866207: 20078: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf800|s1'
-991866207: 20079: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf840|s1'
-991866207: 20080: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd6e0|s1'
-991866207: 20081: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd700|s1'
-991866207: 20082: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd720|s1'
-991866207: 20083: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd740|s1'
-991866207: 20084: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd760|s1'
-991866207: 20085: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd780|s1'
-991866207: 20086: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf600|s3'
-991866207: 20087: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd6a0|s3'
-991866207: 20088: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd6c0|s3'
-991866207: 20089: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf880|s1'
-991866207: 20090: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bba40|s3'
-991866207: 20091: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf8c0|s1'
-991866207: 20092: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd7a0|s1'
-991866207: 20093: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd7c0|s1'
-991866207: 20094: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf900|s1'
-991866207: 20095: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd7e0|s1'
-991866207: 20096: *** free: at 'ltoken.c:320' pnt '0x83bf900|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20097: *** free: at 'abstract.c:5688' pnt '0x83bd7c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20098: *** free: at 'abstract.c:5702' pnt '0x83bd7e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20099: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf940|s1'
-991866207: 20100: checking heap
-991866207: 20100: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf980|s1'
-991866207: 20101: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf9c0|s1'
-991866207: 20102: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfa00|s1'
-991866207: 20103: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfa40|s1'
-991866207: 20104: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfa80|s1'
-991866207: 20105: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfac0|s1'
-991866207: 20106: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfb00|s1'
-991866207: 20107: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfb40|s1'
-991866207: 20108: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfb80|s1'
-991866207: 20109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfbc0|s1'
-991866207: 20110: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfc00|s1'
-991866207: 20111: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfc40|s1'
-991866207: 20112: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfc80|s1'
-991866207: 20113: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd800|s1'
-991866207: 20114: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd820|s1'
-991866207: 20115: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bd840|s1'
-991866207: 20116: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bd860|s1'
-991866207: 20117: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd7c0|s3'
-991866207: 20118: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bd7e0|s3'
-991866207: 20119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bf900|s3'
-991866207: 20120: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bd880|s1'
-991866207: 20121: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bd8a0|s1'
-991866207: 20122: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfcc0|s1'
-991866207: 20123: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfd00|s1'
-991866207: 20124: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfd40|s1'
-991866207: 20125: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfd80|s1'
-991866207: 20126: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bd8c0|s1'
-991866207: 20127: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bd8e0|s1'
-991866207: 20128: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfdc0|s1'
-991866207: 20129: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd900|s1'
-991866207: 20130: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83bd920|s1'
-991866207: 20131: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83bd940|s1'
-991866207: 20132: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83bd960|s1'
-991866207: 20133: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83bd980|s1'
-991866207: 20134: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83bd9a0|s1'
-991866207: 20135: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfe00|s1'
-991866207: 20136: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfe40|s1'
-991866207: 20137: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfe80|s1'
-991866207: 20138: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bfec0|s1'
-991866207: 20139: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bff00|s1'
-991866207: 20140: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bff40|s1'
-991866207: 20141: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bff80|s1'
-991866207: 20142: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83bffc0|s1'
-991866207: 20143: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0000|s1'
-991866207: 20144: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0040|s1'
-991866207: 20145: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0080|s1'
-991866207: 20146: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c00c0|s1'
-991866207: 20147: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0100|s1'
-991866207: 20148: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0140|s1'
-991866207: 20149: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bd9c0|s1'
-991866207: 20150: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bd9e0|s1'
-991866207: 20151: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bda00|s1'
-991866207: 20152: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bda20|s1'
-991866207: 20153: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bda40|s1'
-991866207: 20154: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bda60|s1'
-991866207: 20155: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0180|s1'
-991866207: 20156: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bda80|s1'
-991866207: 20157: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bdaa0|s1'
-991866207: 20158: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c01c0|s1'
-991866207: 20159: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0200|s1'
-991866207: 20160: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0240|s1'
-991866207: 20161: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0280|s1'
-991866207: 20162: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdac0|s1'
-991866207: 20163: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bdae0|s1'
-991866207: 20164: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c02c0|s1'
-991866207: 20165: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdb00|s1'
-991866207: 20166: *** free: at 'ltoken.c:320' pnt '0x83c02c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20167: *** free: at 'abstract.c:5688' pnt '0x83bdae0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20168: *** free: at 'abstract.c:5702' pnt '0x83bdb00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20169: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0300|s1'
-991866207: 20170: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0340|s1'
-991866207: 20171: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0380|s1'
-991866207: 20172: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c03c0|s1'
-991866207: 20173: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0400|s1'
-991866207: 20174: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0440|s1'
-991866207: 20175: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0480|s1'
-991866207: 20176: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c04c0|s1'
-991866207: 20177: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0500|s1'
-991866207: 20178: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0540|s1'
-991866207: 20179: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0580|s1'
-991866207: 20180: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c05c0|s1'
-991866207: 20181: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0600|s1'
-991866207: 20182: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0640|s1'
-991866207: 20183: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bdb20|s1'
-991866207: 20184: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdb40|s1'
-991866207: 20185: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bdb60|s1'
-991866207: 20186: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bdb80|s1'
-991866207: 20187: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdae0|s3'
-991866207: 20188: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bdb00|s3'
-991866207: 20189: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c02c0|s3'
-991866207: 20190: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bdba0|s1'
-991866207: 20191: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bdbc0|s1'
-991866207: 20192: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0680|s1'
-991866207: 20193: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c06c0|s1'
-991866207: 20194: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0700|s1'
-991866207: 20195: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0740|s1'
-991866207: 20196: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdbe0|s1'
-991866207: 20197: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bdc00|s1'
-991866207: 20198: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0780|s1'
-991866207: 20199: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdc20|s1'
-991866207: 20200: checking heap
-991866207: 20200: *** free: at 'ltoken.c:320' pnt '0x83c0780|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20201: *** free: at 'abstract.c:5688' pnt '0x83bdc00|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20202: *** free: at 'abstract.c:5702' pnt '0x83bdc20|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20203: *** alloc: at 'lslOpList.c:56' for 96 bytes, got '0x83a3680|s1'
-991866207: 20204: *** free: at 'lslOpList.c:69' pnt '0x83a3600|s2': size 80, alloced at 'lslOpList.c:56'
-991866207: 20205: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c07c0|s1'
-991866207: 20206: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0800|s1'
-991866207: 20207: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0840|s1'
-991866207: 20208: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0880|s1'
-991866207: 20209: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c08c0|s1'
-991866207: 20210: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0900|s1'
-991866207: 20211: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0940|s1'
-991866207: 20212: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0980|s1'
-991866207: 20213: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c09c0|s1'
-991866207: 20214: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0a00|s1'
-991866207: 20215: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0a40|s1'
-991866207: 20216: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0a80|s1'
-991866207: 20217: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0ac0|s1'
-991866207: 20218: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0b00|s1'
-991866207: 20219: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bdc40|s1'
-991866207: 20220: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdc60|s1'
-991866207: 20221: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bdc00|s3'
-991866207: 20222: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bdc20|s3'
-991866207: 20223: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdc80|s1'
-991866207: 20224: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bdca0|s1'
-991866207: 20225: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0780|s3'
-991866207: 20226: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bdcc0|s1'
-991866207: 20227: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bdce0|s1'
-991866207: 20228: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0b40|s1'
-991866207: 20229: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0b80|s1'
-991866207: 20230: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0bc0|s1'
-991866207: 20231: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0c00|s1'
-991866207: 20232: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdd00|s1'
-991866207: 20233: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bdd20|s1'
-991866207: 20234: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0c40|s1'
-991866207: 20235: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdd40|s1'
-991866207: 20236: *** free: at 'ltoken.c:320' pnt '0x83c0c40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20237: *** free: at 'abstract.c:5688' pnt '0x83bdd20|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20238: *** free: at 'abstract.c:5702' pnt '0x83bdd40|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20239: *** free: at 'ltokenList.c:228' pnt '0x83bdce0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 20240: *** free: at 'ltokenList.c:229' pnt '0x83bdcc0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 20241: *** free: at 'ltoken.c:320' pnt '0x83c0c00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20242: *** free: at 'ltoken.c:320' pnt '0x83c0780|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 20243: *** free: at 'abstract.c:5728' pnt '0x83bdd00|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 20244: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0c80|s1'
-991866207: 20245: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0cc0|s1'
-991866207: 20246: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0d00|s1'
-991866207: 20247: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0d40|s1'
-991866207: 20248: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0d80|s1'
-991866207: 20249: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0dc0|s1'
-991866207: 20250: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0e00|s1'
-991866207: 20251: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0e40|s1'
-991866207: 20252: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0e80|s1'
-991866207: 20253: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0ec0|s1'
-991866207: 20254: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0f00|s1'
-991866207: 20255: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0f40|s1'
-991866207: 20256: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0c40|s3'
-991866207: 20257: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0f80|s1'
-991866207: 20258: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bdd40|s3'
-991866207: 20259: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdce0|s3'
-991866207: 20260: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bdcc0|s3'
-991866207: 20261: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bdd20|s3'
-991866207: 20262: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdd60|s1'
-991866207: 20263: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bdd00|s3'
-991866207: 20264: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0780|s5'
-991866207: 20265: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bdd80|s1'
-991866207: 20266: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bdda0|s1'
-991866207: 20267: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0c00|s3'
-991866207: 20268: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c0fc0|s1'
-991866207: 20269: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2000|s1'
-991866207: 20270: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2040|s1'
-991866207: 20271: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bddc0|s1'
-991866207: 20272: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bdde0|s1'
-991866207: 20273: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2080|s1'
-991866207: 20274: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bde00|s1'
-991866207: 20275: *** free: at 'ltoken.c:320' pnt '0x83c2080|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20276: *** free: at 'abstract.c:5688' pnt '0x83bdde0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20277: *** free: at 'abstract.c:5702' pnt '0x83bde00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20278: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c20c0|s1'
-991866207: 20279: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2100|s1'
-991866207: 20280: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2140|s1'
-991866207: 20281: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2180|s1'
-991866207: 20282: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c21c0|s1'
-991866207: 20283: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2200|s1'
-991866207: 20284: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2240|s1'
-991866207: 20285: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2280|s1'
-991866207: 20286: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c22c0|s1'
-991866207: 20287: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2300|s1'
-991866207: 20288: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2340|s1'
-991866207: 20289: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2380|s1'
-991866207: 20290: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c23c0|s1'
-991866207: 20291: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2400|s1'
-991866207: 20292: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bde20|s1'
-991866207: 20293: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bde40|s1'
-991866207: 20294: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bde60|s1'
-991866207: 20295: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bde80|s1'
-991866207: 20296: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdde0|s3'
-991866207: 20297: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bde00|s3'
-991866207: 20298: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2080|s3'
-991866207: 20299: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83bdea0|s1'
-991866207: 20300: checking heap
-991866207: 20300: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83bdec0|s1'
-991866207: 20301: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2440|s1'
-991866207: 20302: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2480|s1'
-991866207: 20303: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c24c0|s1'
-991866207: 20304: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2500|s1'
-991866207: 20305: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdee0|s1'
-991866207: 20306: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bdf00|s1'
-991866207: 20307: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2540|s1'
-991866207: 20308: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdf20|s1'
-991866207: 20309: *** free: at 'ltoken.c:320' pnt '0x83c2540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20310: *** free: at 'abstract.c:5688' pnt '0x83bdf00|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20311: *** free: at 'abstract.c:5702' pnt '0x83bdf20|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20312: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2580|s1'
-991866207: 20313: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c25c0|s1'
-991866207: 20314: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2600|s1'
-991866207: 20315: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2640|s1'
-991866207: 20316: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2680|s1'
-991866207: 20317: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c26c0|s1'
-991866207: 20318: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2700|s1'
-991866207: 20319: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2740|s1'
-991866207: 20320: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2780|s1'
-991866207: 20321: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83bdf40|s1'
-991866207: 20322: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83bdf60|s1'
-991866207: 20323: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83bdf80|s1'
-991866207: 20324: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83bdfa0|s1'
-991866207: 20325: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdfc0|s1'
-991866207: 20326: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83bdfe0|s1'
-991866207: 20327: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c27c0|s1'
-991866207: 20328: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83b8f40|s3'
-991866207: 20329: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b8f20|s3'
-991866207: 20330: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2540|s3'
-991866207: 20331: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2800|s1'
-991866207: 20332: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2840|s1'
-991866207: 20333: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83bdf20|s3'
-991866207: 20334: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83bdf00|s3'
-991866207: 20335: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2880|s1'
-991866207: 20336: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4000|s1'
-991866207: 20337: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c4020|s1'
-991866207: 20338: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4040|s1'
-991866207: 20339: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4060|s1'
-991866207: 20340: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4080|s1'
-991866207: 20341: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c40a0|s1'
-991866207: 20342: *** alloc: at 'lslOpList.c:56' for 112 bytes, got '0x83a3600|s3'
-991866207: 20343: *** free: at 'lslOpList.c:69' pnt '0x83a3680|s2': size 96, alloced at 'lslOpList.c:56'
-991866207: 20344: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c28c0|s1'
-991866207: 20345: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2900|s1'
-991866207: 20346: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2940|s1'
-991866207: 20347: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2980|s1'
-991866207: 20348: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c29c0|s1'
-991866207: 20349: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2a00|s1'
-991866207: 20350: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2a40|s1'
-991866207: 20351: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2a80|s1'
-991866207: 20352: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2ac0|s1'
-991866207: 20353: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c40c0|s1'
-991866207: 20354: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c40e0|s1'
-991866207: 20355: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4100|s1'
-991866207: 20356: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4120|s1'
-991866207: 20357: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4140|s1'
-991866207: 20358: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4160|s1'
-991866207: 20359: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2b00|s1'
-991866207: 20360: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4180|s1'
-991866207: 20361: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c41a0|s1'
-991866207: 20362: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2b40|s1'
-991866207: 20363: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2b80|s1'
-991866207: 20364: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2bc0|s1'
-991866207: 20365: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c41c0|s1'
-991866207: 20366: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c41e0|s1'
-991866207: 20367: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2c00|s1'
-991866207: 20368: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4200|s1'
-991866207: 20369: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c4220|s1'
-991866207: 20370: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4240|s1'
-991866207: 20371: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4260|s1'
-991866207: 20372: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4280|s1'
-991866207: 20373: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c42a0|s1'
-991866207: 20374: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2c40|s1'
-991866207: 20375: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2c80|s1'
-991866207: 20376: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2cc0|s1'
-991866207: 20377: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2d00|s1'
-991866207: 20378: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2d40|s1'
-991866207: 20379: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2d80|s1'
-991866207: 20380: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2dc0|s1'
-991866207: 20381: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2e00|s1'
-991866207: 20382: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2e40|s1'
-991866207: 20383: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c42c0|s1'
-991866207: 20384: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c42e0|s1'
-991866207: 20385: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4300|s1'
-991866207: 20386: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4320|s1'
-991866207: 20387: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4340|s1'
-991866207: 20388: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4360|s1'
-991866207: 20389: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2e80|s1'
-991866207: 20390: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4380|s1'
-991866207: 20391: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c43a0|s1'
-991866207: 20392: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2ec0|s1'
-991866207: 20393: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2f00|s1'
-991866207: 20394: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2f40|s1'
-991866207: 20395: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c43c0|s1'
-991866207: 20396: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c43e0|s1'
-991866207: 20397: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2f80|s1'
-991866207: 20398: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4400|s1'
-991866207: 20399: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c4420|s1'
-991866207: 20400: checking heap
-991866207: 20400: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4440|s1'
-991866207: 20401: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4460|s1'
-991866207: 20402: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4480|s1'
-991866207: 20403: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c44a0|s1'
-991866207: 20404: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c2fc0|s1'
-991866207: 20405: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6000|s1'
-991866207: 20406: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6040|s1'
-991866207: 20407: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6080|s1'
-991866207: 20408: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c60c0|s1'
-991866207: 20409: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6100|s1'
-991866207: 20410: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6140|s1'
-991866207: 20411: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6180|s1'
-991866207: 20412: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c61c0|s1'
-991866207: 20413: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c44c0|s1'
-991866207: 20414: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c44e0|s1'
-991866207: 20415: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4500|s1'
-991866207: 20416: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4520|s1'
-991866207: 20417: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4540|s1'
-991866207: 20418: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4560|s1'
-991866207: 20419: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6200|s1'
-991866207: 20420: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4580|s1'
-991866207: 20421: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c45a0|s1'
-991866207: 20422: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6240|s1'
-991866207: 20423: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6280|s1'
-991866207: 20424: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c62c0|s1'
-991866207: 20425: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c45c0|s1'
-991866207: 20426: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c45e0|s1'
-991866207: 20427: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6300|s1'
-991866207: 20428: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4600|s1'
-991866207: 20429: *** free: at 'ltoken.c:320' pnt '0x83c6300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20430: *** free: at 'abstract.c:5688' pnt '0x83c45e0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20431: *** free: at 'abstract.c:5702' pnt '0x83c4600|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20432: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6340|s1'
-991866207: 20433: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6380|s1'
-991866207: 20434: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c63c0|s1'
-991866207: 20435: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6400|s1'
-991866207: 20436: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6440|s1'
-991866207: 20437: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6480|s1'
-991866207: 20438: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c64c0|s1'
-991866207: 20439: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6500|s1'
-991866207: 20440: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6540|s1'
-991866207: 20441: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c4620|s1'
-991866207: 20442: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4640|s1'
-991866207: 20443: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4660|s1'
-991866207: 20444: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4680|s1'
-991866207: 20445: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c46a0|s1'
-991866207: 20446: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c46c0|s1'
-991866207: 20447: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6580|s1'
-991866207: 20448: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c46e0|s1'
-991866207: 20449: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c4700|s1'
-991866207: 20450: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6300|s3'
-991866207: 20451: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c65c0|s1'
-991866207: 20452: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6600|s1'
-991866207: 20453: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4600|s3'
-991866207: 20454: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c45e0|s3'
-991866207: 20455: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6640|s1'
-991866207: 20456: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4720|s1'
-991866207: 20457: *** free: at 'ltoken.c:320' pnt '0x83c6640|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20458: *** free: at 'abstract.c:5688' pnt '0x83c45e0|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 20459: *** free: at 'abstract.c:5702' pnt '0x83c4720|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20460: *** free: at 'ltokenList.c:228' pnt '0x83c4700|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 20461: *** free: at 'ltokenList.c:229' pnt '0x83c46e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 20462: *** free: at 'ltoken.c:320' pnt '0x83c6600|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20463: *** free: at 'ltoken.c:320' pnt '0x83c6580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20464: *** free: at 'abstract.c:5728' pnt '0x83c4600|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 20465: *** alloc: at 'lslOpList.c:56' for 128 bytes, got '0x83a3680|s3'
-991866207: 20466: *** free: at 'lslOpList.c:69' pnt '0x83a3600|s4': size 112, alloced at 'lslOpList.c:56'
-991866207: 20467: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6680|s1'
-991866207: 20468: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c66c0|s1'
-991866207: 20469: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6700|s1'
-991866207: 20470: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6740|s1'
-991866207: 20471: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6780|s1'
-991866207: 20472: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c67c0|s1'
-991866207: 20473: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6800|s1'
-991866207: 20474: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6840|s1'
-991866207: 20475: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6880|s1'
-991866207: 20476: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c4740|s1'
-991866207: 20477: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4760|s1'
-991866207: 20478: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c45e0|s5'
-991866207: 20479: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4720|s3'
-991866207: 20480: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4700|s3'
-991866207: 20481: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c46e0|s3'
-991866207: 20482: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6600|s3'
-991866207: 20483: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4780|s1'
-991866207: 20484: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c4600|s5'
-991866207: 20485: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6580|s3'
-991866207: 20486: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6640|s3'
-991866207: 20487: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c68c0|s1'
-991866207: 20488: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c47a0|s1'
-991866207: 20489: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c47c0|s1'
-991866207: 20490: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6900|s1'
-991866207: 20491: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c47e0|s1'
-991866207: 20492: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c4800|s1'
-991866207: 20493: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4820|s1'
-991866207: 20494: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4840|s1'
-991866207: 20495: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4860|s1'
-991866207: 20496: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c4880|s1'
-991866207: 20497: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6940|s1'
-991866207: 20498: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6980|s1'
-991866207: 20499: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c69c0|s1'
-991866207: 20500: checking heap
-991866207: 20500: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6a00|s1'
-991866207: 20501: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6a40|s1'
-991866207: 20502: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6a80|s1'
-991866207: 20503: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6ac0|s1'
-991866207: 20504: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6b00|s1'
-991866207: 20505: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6b40|s1'
-991866207: 20506: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c48a0|s1'
-991866207: 20507: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c48c0|s1'
-991866207: 20508: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c48e0|s1'
-991866207: 20509: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4900|s1'
-991866207: 20510: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4920|s1'
-991866207: 20511: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4940|s1'
-991866207: 20512: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6b80|s1'
-991866207: 20513: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4960|s1'
-991866207: 20514: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c4980|s1'
-991866207: 20515: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6bc0|s1'
-991866207: 20516: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6c00|s1'
-991866207: 20517: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6c40|s1'
-991866207: 20518: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c49a0|s1'
-991866207: 20519: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c49c0|s1'
-991866207: 20520: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6c80|s1'
-991866207: 20521: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c49e0|s1'
-991866207: 20522: *** free: at 'ltoken.c:320' pnt '0x83c6c80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20523: *** free: at 'abstract.c:5688' pnt '0x83c49c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20524: *** free: at 'abstract.c:5702' pnt '0x83c49e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20525: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6cc0|s1'
-991866207: 20526: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6d00|s1'
-991866207: 20527: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6d40|s1'
-991866207: 20528: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6d80|s1'
-991866207: 20529: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6dc0|s1'
-991866207: 20530: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6e00|s1'
-991866207: 20531: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6e40|s1'
-991866207: 20532: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6e80|s1'
-991866207: 20533: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6ec0|s1'
-991866207: 20534: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c4a00|s1'
-991866207: 20535: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4a20|s1'
-991866207: 20536: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4a40|s1'
-991866207: 20537: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4a60|s1'
-991866207: 20538: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4a80|s1'
-991866207: 20539: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4aa0|s1'
-991866207: 20540: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6f00|s1'
-991866207: 20541: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4ac0|s1'
-991866207: 20542: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c4ae0|s1'
-991866207: 20543: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6c80|s3'
-991866207: 20544: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6f40|s1'
-991866207: 20545: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6f80|s1'
-991866207: 20546: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c49e0|s3'
-991866207: 20547: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c49c0|s3'
-991866207: 20548: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6fc0|s1'
-991866207: 20549: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4b00|s1'
-991866207: 20550: *** free: at 'ltoken.c:320' pnt '0x83c6fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20551: *** free: at 'abstract.c:5688' pnt '0x83c49c0|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 20552: *** free: at 'abstract.c:5702' pnt '0x83c4b00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20553: *** free: at 'ltokenList.c:228' pnt '0x83c4ae0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 20554: *** free: at 'ltokenList.c:229' pnt '0x83c4ac0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 20555: *** free: at 'ltoken.c:320' pnt '0x83c6f80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20556: *** free: at 'ltoken.c:320' pnt '0x83c6f00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20557: *** free: at 'abstract.c:5728' pnt '0x83c49e0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 20558: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83c7000|s1'
-991866207: 20559: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7040|s1'
-991866207: 20560: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7080|s1'
-991866207: 20561: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c70c0|s1'
-991866207: 20562: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7100|s1'
-991866207: 20563: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7140|s1'
-991866207: 20564: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83c4b20|s1'
-991866207: 20565: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4b40|s1'
-991866207: 20566: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4b60|s1'
-991866207: 20567: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4b80|s1'
-991866207: 20568: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4ba0|s1'
-991866207: 20569: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7180|s1'
-991866207: 20570: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4bc0|s1'
-991866207: 20571: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c49c0|s5'
-991866207: 20572: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c71c0|s1'
-991866207: 20573: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7200|s1'
-991866207: 20574: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4ac0|s3'
-991866207: 20575: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7240|s1'
-991866207: 20576: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83c4ae0|s3'
-991866207: 20577: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c49e0|s5'
-991866207: 20578: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4b00|s3'
-991866207: 20579: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4be0|s1'
-991866207: 20580: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4c00|s1'
-991866207: 20581: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c4c20|s1'
-991866207: 20582: *** alloc: at 'lslOpList.c:56' for 144 bytes, got '0x8227400|s1'
-991866207: 20583: *** free: at 'lslOpList.c:69' pnt '0x83a3680|s4': size 128, alloced at 'lslOpList.c:56'
-991866207: 20584: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83c7280|s1'
-991866207: 20585: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c72c0|s1'
-991866207: 20586: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7300|s1'
-991866207: 20587: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7340|s1'
-991866207: 20588: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7380|s1'
-991866207: 20589: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c73c0|s1'
-991866207: 20590: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83c4c40|s1'
-991866207: 20591: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4c60|s1'
-991866207: 20592: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4c80|s1'
-991866207: 20593: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4ca0|s1'
-991866207: 20594: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4cc0|s1'
-991866207: 20595: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7400|s1'
-991866207: 20596: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4ce0|s1'
-991866207: 20597: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c4d00|s1'
-991866207: 20598: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7440|s1'
-991866207: 20599: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7480|s1'
-991866207: 20600: checking heap
-991866207: 20600: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4d20|s1'
-991866207: 20601: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c74c0|s1'
-991866207: 20602: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83c4d40|s1'
-991866207: 20603: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c4d60|s1'
-991866207: 20604: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4d80|s1'
-991866207: 20605: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4da0|s1'
-991866207: 20606: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4dc0|s1'
-991866207: 20607: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c4de0|s1'
-991866207: 20608: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83c7500|s1'
-991866207: 20609: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7540|s1'
-991866207: 20610: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7580|s1'
-991866207: 20611: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c75c0|s1'
-991866207: 20612: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7600|s1'
-991866207: 20613: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7640|s1'
-991866207: 20614: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7680|s1'
-991866207: 20615: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c4e00|s1'
-991866207: 20616: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4e20|s1'
-991866207: 20617: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c4e40|s1'
-991866207: 20618: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c4e60|s1'
-991866207: 20619: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4e80|s1'
-991866207: 20620: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c4ea0|s1'
-991866207: 20621: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c76c0|s1'
-991866207: 20622: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c4ec0|s1'
-991866207: 20623: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c4ee0|s1'
-991866207: 20624: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7700|s1'
-991866207: 20625: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7740|s1'
-991866207: 20626: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c4f00|s1'
-991866207: 20627: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c4f20|s1'
-991866207: 20628: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7780|s1'
-991866207: 20629: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c4f40|s1'
-991866207: 20630: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c4f60|s1'
-991866207: 20631: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c4f80|s1'
-991866207: 20632: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c4fa0|s1'
-991866207: 20633: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c4fc0|s1'
-991866207: 20634: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c4fe0|s1'
-991866207: 20635: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c77c0|s1'
-991866207: 20636: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7800|s1'
-991866207: 20637: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7840|s1'
-991866207: 20638: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7880|s1'
-991866207: 20639: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c78c0|s1'
-991866207: 20640: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7900|s1'
-991866207: 20641: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7940|s1'
-991866207: 20642: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7980|s1'
-991866207: 20643: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c79c0|s1'
-991866207: 20644: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9000|s1'
-991866207: 20645: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9020|s1'
-991866207: 20646: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9040|s1'
-991866207: 20647: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9060|s1'
-991866207: 20648: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9080|s1'
-991866207: 20649: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c90a0|s1'
-991866207: 20650: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7a00|s1'
-991866207: 20651: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c90c0|s1'
-991866207: 20652: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c90e0|s1'
-991866207: 20653: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7a40|s1'
-991866207: 20654: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7a80|s1'
-991866207: 20655: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7ac0|s1'
-991866207: 20656: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9100|s1'
-991866207: 20657: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9120|s1'
-991866207: 20658: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7b00|s1'
-991866207: 20659: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9140|s1'
-991866207: 20660: *** free: at 'ltoken.c:320' pnt '0x83c7b00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20661: *** free: at 'abstract.c:5688' pnt '0x83c9120|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20662: *** free: at 'abstract.c:5702' pnt '0x83c9140|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20663: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7b40|s1'
-991866207: 20664: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7b80|s1'
-991866207: 20665: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7bc0|s1'
-991866207: 20666: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7c00|s1'
-991866207: 20667: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7c40|s1'
-991866207: 20668: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7c80|s1'
-991866207: 20669: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9160|s1'
-991866207: 20670: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9180|s1'
-991866207: 20671: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c91a0|s1'
-991866207: 20672: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c91c0|s1'
-991866207: 20673: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c91e0|s1'
-991866207: 20674: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9200|s1'
-991866207: 20675: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7cc0|s1'
-991866207: 20676: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9220|s1'
-991866207: 20677: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9240|s1'
-991866207: 20678: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7d00|s1'
-991866207: 20679: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7d40|s1'
-991866207: 20680: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9260|s1'
-991866207: 20681: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9120|s3'
-991866207: 20682: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7b00|s3'
-991866207: 20683: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9140|s3'
-991866207: 20684: *** free: at 'ltoken.c:320' pnt '0x83c7b00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 20685: *** free: at 'abstract.c:5688' pnt '0x83c9120|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 20686: *** free: at 'abstract.c:5702' pnt '0x83c9140|s4': size 8, alloced at 'abstract.c:1311'
-991866207: 20687: *** alloc: at 'lslOpList.c:56' for 160 bytes, got '0x8227500|s1'
-991866207: 20688: *** free: at 'lslOpList.c:69' pnt '0x8227400|s2': size 144, alloced at 'lslOpList.c:56'
-991866207: 20689: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7d80|s1'
-991866207: 20690: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7dc0|s1'
-991866207: 20691: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7e00|s1'
-991866207: 20692: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7e40|s1'
-991866207: 20693: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7e80|s1'
-991866207: 20694: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7ec0|s1'
-991866207: 20695: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7f00|s1'
-991866207: 20696: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7f40|s1'
-991866207: 20697: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7f80|s1'
-991866207: 20698: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9280|s1'
-991866207: 20699: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c92a0|s1'
-991866207: 20700: checking heap
-991866207: 20700: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c92c0|s1'
-991866207: 20701: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c92e0|s1'
-991866207: 20702: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9300|s1'
-991866207: 20703: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9320|s1'
-991866207: 20704: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7b00|s5'
-991866207: 20705: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9120|s5'
-991866207: 20706: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9140|s5'
-991866207: 20707: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c7fc0|s1'
-991866207: 20708: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6f00|s3'
-991866207: 20709: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6f80|s3'
-991866207: 20710: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9340|s1'
-991866207: 20711: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9360|s1'
-991866207: 20712: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6fc0|s3'
-991866207: 20713: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9380|s1'
-991866207: 20714: *** free: at 'ltoken.c:320' pnt '0x83c6fc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 20715: *** free: at 'abstract.c:5688' pnt '0x83c9360|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20716: *** free: at 'abstract.c:5702' pnt '0x83c9380|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20717: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb000|s1'
-991866207: 20718: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb040|s1'
-991866207: 20719: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb080|s1'
-991866207: 20720: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb0c0|s1'
-991866207: 20721: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb100|s1'
-991866207: 20722: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb140|s1'
-991866207: 20723: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c93a0|s1'
-991866207: 20724: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c93c0|s1'
-991866207: 20725: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c93e0|s1'
-991866207: 20726: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9400|s1'
-991866207: 20727: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9420|s1'
-991866207: 20728: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9440|s1'
-991866207: 20729: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb180|s1'
-991866207: 20730: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9460|s1'
-991866207: 20731: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9480|s1'
-991866207: 20732: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb1c0|s1'
-991866207: 20733: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb200|s1'
-991866207: 20734: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c94a0|s1'
-991866207: 20735: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9360|s3'
-991866207: 20736: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb240|s1'
-991866207: 20737: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9380|s3'
-991866207: 20738: *** free: at 'ltoken.c:320' pnt '0x83cb240|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20739: *** free: at 'abstract.c:5688' pnt '0x83c9360|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 20740: *** free: at 'abstract.c:5702' pnt '0x83c9380|s4': size 8, alloced at 'abstract.c:1311'
-991866207: 20741: *** free: at 'ltokenList.c:228' pnt '0x83c9480|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 20742: *** free: at 'ltokenList.c:229' pnt '0x83c9460|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 20743: *** free: at 'ltoken.c:320' pnt '0x83cb200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20744: *** free: at 'ltoken.c:320' pnt '0x83cb180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20745: *** free: at 'abstract.c:5728' pnt '0x83c94a0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 20746: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb280|s1'
-991866207: 20747: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb2c0|s1'
-991866207: 20748: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb300|s1'
-991866207: 20749: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb340|s1'
-991866207: 20750: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb380|s1'
-991866207: 20751: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb3c0|s1'
-991866207: 20752: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb400|s1'
-991866207: 20753: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb440|s1'
-991866207: 20754: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb480|s1'
-991866207: 20755: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c94c0|s1'
-991866207: 20756: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c94e0|s1'
-991866207: 20757: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9500|s1'
-991866207: 20758: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9520|s1'
-991866207: 20759: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9360|s5'
-991866207: 20760: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9380|s5'
-991866207: 20761: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb240|s3'
-991866207: 20762: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9460|s3'
-991866207: 20763: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9480|s3'
-991866207: 20764: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb180|s3'
-991866207: 20765: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb200|s3'
-991866207: 20766: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb4c0|s1'
-991866207: 20767: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c94a0|s3'
-991866207: 20768: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9540|s1'
-991866207: 20769: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb500|s1'
-991866207: 20770: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9560|s1'
-991866207: 20771: *** free: at 'ltoken.c:320' pnt '0x83cb500|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20772: *** free: at 'abstract.c:5688' pnt '0x83c9540|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20773: *** free: at 'abstract.c:5702' pnt '0x83c9560|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20774: *** free: at 'ltokenList.c:228' pnt '0x83c9480|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 20775: *** free: at 'ltokenList.c:229' pnt '0x83c9460|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 20776: *** free: at 'ltoken.c:320' pnt '0x83cb4c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20777: *** free: at 'ltoken.c:320' pnt '0x83cb240|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 20778: *** free: at 'abstract.c:5728' pnt '0x83c94a0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 20779: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb540|s1'
-991866207: 20780: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83cb580|s1'
-991866207: 20781: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb5c0|s1'
-991866207: 20782: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb600|s1'
-991866207: 20783: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb640|s1'
-991866207: 20784: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb680|s1'
-991866207: 20785: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb6c0|s1'
-991866207: 20786: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb700|s1'
-991866207: 20787: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb740|s1'
-991866207: 20788: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb780|s1'
-991866207: 20789: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9580|s1'
-991866207: 20790: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c95a0|s1'
-991866207: 20791: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c95c0|s1'
-991866207: 20792: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9540|s3'
-991866207: 20793: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9560|s3'
-991866207: 20794: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9480|s5'
-991866207: 20795: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb500|s3'
-991866207: 20796: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9460|s5'
-991866207: 20797: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c95e0|s1'
-991866207: 20798: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb240|s5'
-991866207: 20799: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb4c0|s3'
-991866207: 20800: checking heap
-991866207: 20800: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb7c0|s1'
-991866207: 20801: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c94a0|s5'
-991866207: 20802: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9600|s1'
-991866207: 20803: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb800|s1'
-991866207: 20804: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9620|s1'
-991866207: 20805: *** free: at 'ltoken.c:320' pnt '0x83cb800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20806: *** free: at 'abstract.c:5688' pnt '0x83c9600|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20807: *** free: at 'abstract.c:5702' pnt '0x83c9620|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20808: *** alloc: at 'lslOpList.c:56' for 176 bytes, got '0x8227400|s3'
-991866207: 20809: *** free: at 'lslOpList.c:69' pnt '0x8227500|s2': size 160, alloced at 'lslOpList.c:56'
-991866207: 20810: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb840|s1'
-991866207: 20811: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb880|s1'
-991866207: 20812: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb8c0|s1'
-991866207: 20813: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb900|s1'
-991866207: 20814: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb940|s1'
-991866207: 20815: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb980|s1'
-991866207: 20816: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb9c0|s1'
-991866207: 20817: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cba00|s1'
-991866207: 20818: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cba40|s1'
-991866207: 20819: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9640|s1'
-991866207: 20820: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9660|s1'
-991866207: 20821: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9680|s1'
-991866207: 20822: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c96a0|s1'
-991866207: 20823: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c96c0|s1'
-991866207: 20824: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c96e0|s1'
-991866207: 20825: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cb800|s3'
-991866207: 20826: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9600|s3'
-991866207: 20827: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9620|s3'
-991866207: 20828: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cba80|s1'
-991866207: 20829: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbac0|s1'
-991866207: 20830: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbb00|s1'
-991866207: 20831: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9700|s1'
-991866207: 20832: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9720|s1'
-991866207: 20833: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbb40|s1'
-991866207: 20834: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9740|s1'
-991866207: 20835: *** free: at 'ltoken.c:320' pnt '0x83cbb40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20836: *** free: at 'abstract.c:5688' pnt '0x83c9720|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20837: *** free: at 'abstract.c:5702' pnt '0x83c9740|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20838: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbb80|s1'
-991866207: 20839: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbbc0|s1'
-991866207: 20840: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbc00|s1'
-991866207: 20841: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbc40|s1'
-991866207: 20842: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbc80|s1'
-991866207: 20843: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbcc0|s1'
-991866207: 20844: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbd00|s1'
-991866207: 20845: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbd40|s1'
-991866207: 20846: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbd80|s1'
-991866207: 20847: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9760|s1'
-991866207: 20848: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9780|s1'
-991866207: 20849: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c97a0|s1'
-991866207: 20850: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c97c0|s1'
-991866207: 20851: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c97e0|s1'
-991866207: 20852: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9800|s1'
-991866207: 20853: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbdc0|s1'
-991866207: 20854: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9820|s1'
-991866207: 20855: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9840|s1'
-991866207: 20856: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbb40|s3'
-991866207: 20857: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbe00|s1'
-991866207: 20858: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbe40|s1'
-991866207: 20859: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9740|s3'
-991866207: 20860: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9720|s3'
-991866207: 20861: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbe80|s1'
-991866207: 20862: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9860|s1'
-991866207: 20863: *** free: at 'ltoken.c:320' pnt '0x83cbe80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20864: *** free: at 'abstract.c:5688' pnt '0x83c9720|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 20865: *** free: at 'abstract.c:5702' pnt '0x83c9860|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20866: *** free: at 'ltokenList.c:228' pnt '0x83c9840|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 20867: *** free: at 'ltokenList.c:229' pnt '0x83c9820|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 20868: *** free: at 'ltoken.c:320' pnt '0x83cbe40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20869: *** free: at 'ltoken.c:320' pnt '0x83cbdc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20870: *** free: at 'abstract.c:5728' pnt '0x83c9740|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 20871: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbec0|s1'
-991866207: 20872: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83cbf00|s1'
-991866207: 20873: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbf40|s1'
-991866207: 20874: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbf80|s1'
-991866207: 20875: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbfc0|s1'
-991866207: 20876: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83c6fc0|s5'
-991866207: 20877: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc000|s1'
-991866207: 20878: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc040|s1'
-991866207: 20879: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc080|s1'
-991866207: 20880: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc0c0|s1'
-991866207: 20881: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9880|s1'
-991866207: 20882: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c98a0|s1'
-991866207: 20883: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c98c0|s1'
-991866207: 20884: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9720|s5'
-991866207: 20885: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9860|s3'
-991866207: 20886: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9840|s3'
-991866207: 20887: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc100|s1'
-991866207: 20888: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9820|s3'
-991866207: 20889: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c98e0|s1'
-991866207: 20890: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc140|s1'
-991866207: 20891: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc180|s1'
-991866207: 20892: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc1c0|s1'
-991866207: 20893: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9740|s5'
-991866207: 20894: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9900|s1'
-991866207: 20895: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc200|s1'
-991866207: 20896: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9920|s1'
-991866207: 20897: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c9940|s1'
-991866207: 20898: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c9960|s1'
-991866207: 20899: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c9980|s1'
-991866207: 20900: checking heap
-991866207: 20900: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c99a0|s1'
-991866207: 20901: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c99c0|s1'
-991866207: 20902: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc240|s1'
-991866207: 20903: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc280|s1'
-991866207: 20904: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc2c0|s1'
-991866207: 20905: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc300|s1'
-991866207: 20906: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc340|s1'
-991866207: 20907: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc380|s1'
-991866207: 20908: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc3c0|s1'
-991866207: 20909: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc400|s1'
-991866207: 20910: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc440|s1'
-991866207: 20911: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c99e0|s1'
-991866207: 20912: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9a00|s1'
-991866207: 20913: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9a20|s1'
-991866207: 20914: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9a40|s1'
-991866207: 20915: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9a60|s1'
-991866207: 20916: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9a80|s1'
-991866207: 20917: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc480|s1'
-991866207: 20918: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9aa0|s1'
-991866207: 20919: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9ac0|s1'
-991866207: 20920: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc4c0|s1'
-991866207: 20921: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc500|s1'
-991866207: 20922: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc540|s1'
-991866207: 20923: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9ae0|s1'
-991866207: 20924: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9b00|s1'
-991866207: 20925: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc580|s1'
-991866207: 20926: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9b20|s1'
-991866207: 20927: *** free: at 'ltoken.c:320' pnt '0x83cc580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20928: *** free: at 'abstract.c:5688' pnt '0x83c9b00|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20929: *** free: at 'abstract.c:5702' pnt '0x83c9b20|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20930: *** alloc: at 'lslOpList.c:56' for 192 bytes, got '0x8227500|s3'
-991866207: 20931: *** free: at 'lslOpList.c:69' pnt '0x8227400|s4': size 176, alloced at 'lslOpList.c:56'
-991866207: 20932: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc5c0|s1'
-991866207: 20933: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc600|s1'
-991866207: 20934: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc640|s1'
-991866207: 20935: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc680|s1'
-991866207: 20936: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc6c0|s1'
-991866207: 20937: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc700|s1'
-991866207: 20938: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc740|s1'
-991866207: 20939: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc780|s1'
-991866207: 20940: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc7c0|s1'
-991866207: 20941: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9b40|s1'
-991866207: 20942: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9b60|s1'
-991866207: 20943: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9b80|s1'
-991866207: 20944: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9ba0|s1'
-991866207: 20945: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9bc0|s1'
-991866207: 20946: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9be0|s1'
-991866207: 20947: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc580|s3'
-991866207: 20948: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9b00|s3'
-991866207: 20949: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9b20|s3'
-991866207: 20950: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc800|s1'
-991866207: 20951: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc840|s1'
-991866207: 20952: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc880|s1'
-991866207: 20953: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9c00|s1'
-991866207: 20954: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9c20|s1'
-991866207: 20955: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc8c0|s1'
-991866207: 20956: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9c40|s1'
-991866207: 20957: *** free: at 'ltoken.c:320' pnt '0x83cc8c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20958: *** free: at 'abstract.c:5688' pnt '0x83c9c20|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 20959: *** free: at 'abstract.c:5702' pnt '0x83c9c40|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 20960: *** free: at 'ltokenList.c:228' pnt '0x83c9b20|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 20961: *** free: at 'ltokenList.c:229' pnt '0x83c9b00|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 20962: *** free: at 'ltoken.c:320' pnt '0x83cc880|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 20963: *** free: at 'ltoken.c:320' pnt '0x83cc580|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 20964: *** free: at 'abstract.c:5728' pnt '0x83c9c00|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 20965: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc900|s1'
-991866207: 20966: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83cc940|s1'
-991866207: 20967: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc980|s1'
-991866207: 20968: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc9c0|s1'
-991866207: 20969: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cca00|s1'
-991866207: 20970: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cca40|s1'
-991866207: 20971: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cca80|s1'
-991866207: 20972: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccac0|s1'
-991866207: 20973: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccb00|s1'
-991866207: 20974: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccb40|s1'
-991866207: 20975: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9c60|s1'
-991866207: 20976: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9c80|s1'
-991866207: 20977: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9ca0|s1'
-991866207: 20978: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9c20|s3'
-991866207: 20979: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9c40|s3'
-991866207: 20980: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9b20|s5'
-991866207: 20981: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc8c0|s3'
-991866207: 20982: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9b00|s5'
-991866207: 20983: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9cc0|s1'
-991866207: 20984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc580|s5'
-991866207: 20985: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cc880|s3'
-991866207: 20986: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccb80|s1'
-991866207: 20987: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9c00|s3'
-991866207: 20988: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9ce0|s1'
-991866207: 20989: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccbc0|s1'
-991866207: 20990: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9d00|s1'
-991866207: 20991: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83c9d20|s1'
-991866207: 20992: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83c9d40|s1'
-991866207: 20993: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83c9d60|s1'
-991866207: 20994: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83c9d80|s1'
-991866207: 20995: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83c9da0|s1'
-991866207: 20996: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccc00|s1'
-991866207: 20997: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccc40|s1'
-991866207: 20998: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccc80|s1'
-991866207: 20999: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cccc0|s1'
-991866207: 21000: checking heap
-991866207: 21000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccd00|s1'
-991866207: 21001: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccd40|s1'
-991866207: 21002: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccd80|s1'
-991866207: 21003: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccdc0|s1'
-991866207: 21004: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cce00|s1'
-991866207: 21005: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9dc0|s1'
-991866207: 21006: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9de0|s1'
-991866207: 21007: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9e00|s1'
-991866207: 21008: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9e20|s1'
-991866207: 21009: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9e40|s1'
-991866207: 21010: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9e60|s1'
-991866207: 21011: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cce40|s1'
-991866207: 21012: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9e80|s1'
-991866207: 21013: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9ea0|s1'
-991866207: 21014: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cce80|s1'
-991866207: 21015: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccec0|s1'
-991866207: 21016: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccf00|s1'
-991866207: 21017: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9ec0|s1'
-991866207: 21018: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83c9ee0|s1'
-991866207: 21019: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccf40|s1'
-991866207: 21020: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9f00|s1'
-991866207: 21021: *** free: at 'ltoken.c:320' pnt '0x83ccf40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21022: *** free: at 'abstract.c:5688' pnt '0x83c9ee0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 21023: *** free: at 'abstract.c:5702' pnt '0x83c9f00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 21024: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccf80|s1'
-991866207: 21025: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccfc0|s1'
-991866207: 21026: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbdc0|s3'
-991866207: 21027: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbe40|s3'
-991866207: 21028: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cbe80|s3'
-991866207: 21029: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce000|s1'
-991866207: 21030: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce040|s1'
-991866207: 21031: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce080|s1'
-991866207: 21032: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce0c0|s1'
-991866207: 21033: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83c9f20|s1'
-991866207: 21034: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83c9f40|s1'
-991866207: 21035: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83c9f60|s1'
-991866207: 21036: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83c9f80|s1'
-991866207: 21037: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9fa0|s1'
-991866207: 21038: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83c9fc0|s1'
-991866207: 21039: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce100|s1'
-991866207: 21040: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9fe0|s1'
-991866207: 21041: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0000|s1'
-991866207: 21042: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce140|s1'
-991866207: 21043: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce180|s1'
-991866207: 21044: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce1c0|s1'
-991866207: 21045: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0020|s1'
-991866207: 21046: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d0040|s1'
-991866207: 21047: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce200|s1'
-991866207: 21048: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0060|s1'
-991866207: 21049: *** free: at 'ltoken.c:320' pnt '0x83ce200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21050: *** free: at 'abstract.c:5688' pnt '0x83d0040|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 21051: *** free: at 'abstract.c:5702' pnt '0x83d0060|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 21052: *** free: at 'ltokenList.c:228' pnt '0x83d0000|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21053: *** free: at 'ltokenList.c:229' pnt '0x83c9fe0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21054: *** free: at 'ltoken.c:320' pnt '0x83ce1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21055: *** free: at 'ltoken.c:320' pnt '0x83ce100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21056: *** free: at 'abstract.c:5728' pnt '0x83d0020|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 21057: *** alloc: at 'lslOpList.c:56' for 208 bytes, got '0x8227400|s5'
-991866207: 21058: *** free: at 'lslOpList.c:69' pnt '0x8227500|s4': size 192, alloced at 'lslOpList.c:56'
-991866207: 21059: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce240|s1'
-991866207: 21060: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ce280|s1'
-991866207: 21061: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce2c0|s1'
-991866207: 21062: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce300|s1'
-991866207: 21063: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce340|s1'
-991866207: 21064: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce380|s1'
-991866207: 21065: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce3c0|s1'
-991866207: 21066: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce400|s1'
-991866207: 21067: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce440|s1'
-991866207: 21068: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce480|s1'
-991866207: 21069: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d0080|s1'
-991866207: 21070: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0040|s3'
-991866207: 21071: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0060|s3'
-991866207: 21072: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d0000|s3'
-991866207: 21073: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83c9fe0|s3'
-991866207: 21074: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d00a0|s1'
-991866207: 21075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce100|s3'
-991866207: 21076: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0020|s3'
-991866207: 21077: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d00c0|s1'
-991866207: 21078: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce1c0|s3'
-991866207: 21079: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce200|s3'
-991866207: 21080: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce4c0|s1'
-991866207: 21081: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d00e0|s1'
-991866207: 21082: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d0100|s1'
-991866207: 21083: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce500|s1'
-991866207: 21084: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0120|s1'
-991866207: 21085: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0140|s1'
-991866207: 21086: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0160|s1'
-991866207: 21087: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0180|s1'
-991866207: 21088: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d01a0|s1'
-991866207: 21089: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d01c0|s1'
-991866207: 21090: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce540|s1'
-991866207: 21091: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce580|s1'
-991866207: 21092: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce5c0|s1'
-991866207: 21093: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce600|s1'
-991866207: 21094: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce640|s1'
-991866207: 21095: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce680|s1'
-991866207: 21096: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce6c0|s1'
-991866207: 21097: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce700|s1'
-991866207: 21098: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce740|s1'
-991866207: 21099: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d01e0|s1'
-991866207: 21100: checking heap
-991866207: 21100: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0200|s1'
-991866207: 21101: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0220|s1'
-991866207: 21102: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d0240|s1'
-991866207: 21103: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0260|s1'
-991866207: 21104: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0280|s1'
-991866207: 21105: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce780|s1'
-991866207: 21106: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d02a0|s1'
-991866207: 21107: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d02c0|s1'
-991866207: 21108: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce7c0|s1'
-991866207: 21109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce800|s1'
-991866207: 21110: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce840|s1'
-991866207: 21111: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d02e0|s1'
-991866207: 21112: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d0300|s1'
-991866207: 21113: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce880|s1'
-991866207: 21114: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0320|s1'
-991866207: 21115: *** free: at 'ltoken.c:320' pnt '0x83ce880|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21116: *** free: at 'abstract.c:5688' pnt '0x83d0300|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 21117: *** free: at 'abstract.c:5702' pnt '0x83d0320|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 21118: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce8c0|s1'
-991866207: 21119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce900|s1'
-991866207: 21120: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce940|s1'
-991866207: 21121: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce980|s1'
-991866207: 21122: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce9c0|s1'
-991866207: 21123: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cea00|s1'
-991866207: 21124: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cea40|s1'
-991866207: 21125: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cea80|s1'
-991866207: 21126: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceac0|s1'
-991866207: 21127: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d0340|s1'
-991866207: 21128: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0360|s1'
-991866207: 21129: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0380|s1'
-991866207: 21130: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d03a0|s1'
-991866207: 21131: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d03c0|s1'
-991866207: 21132: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d03e0|s1'
-991866207: 21133: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceb00|s1'
-991866207: 21134: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0400|s1'
-991866207: 21135: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0420|s1'
-991866207: 21136: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ce880|s3'
-991866207: 21137: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceb40|s1'
-991866207: 21138: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceb80|s1'
-991866207: 21139: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0320|s3'
-991866207: 21140: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d0300|s3'
-991866207: 21141: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cebc0|s1'
-991866207: 21142: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d0440|s1'
-991866207: 21143: *** free: at 'ltoken.c:320' pnt '0x83cebc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21144: *** free: at 'abstract.c:5688' pnt '0x83d0300|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 21145: *** free: at 'abstract.c:5702' pnt '0x83d0440|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 21146: *** free: at 'ltokenList.c:228' pnt '0x83d0420|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21147: *** free: at 'ltokenList.c:229' pnt '0x83d0400|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21148: *** free: at 'ltoken.c:320' pnt '0x83ceb80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21149: *** free: at 'ltoken.c:320' pnt '0x83ceb00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21150: *** free: at 'abstract.c:5728' pnt '0x83d0320|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 21151: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83cec00|s1'
-991866207: 21152: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cec40|s1'
-991866207: 21153: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cec80|s1'
-991866207: 21154: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cecc0|s1'
-991866207: 21155: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ced00|s1'
-991866207: 21156: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ced40|s1'
-991866207: 21157: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0460|s1'
-991866207: 21158: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0480|s1'
-991866207: 21159: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d04a0|s1'
-991866207: 21160: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d04c0|s1'
-991866207: 21161: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d04e0|s1'
-991866207: 21162: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ced80|s1'
-991866207: 21163: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0500|s1'
-991866207: 21164: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0300|s5'
-991866207: 21165: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cebc0|s3'
-991866207: 21166: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cedc0|s1'
-991866207: 21167: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0400|s3'
-991866207: 21168: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceb80|s3'
-991866207: 21169: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0420|s3'
-991866207: 21170: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0320|s5'
-991866207: 21171: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0440|s3'
-991866207: 21172: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0520|s1'
-991866207: 21173: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d0540|s1'
-991866207: 21174: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d0560|s1'
-991866207: 21175: *** alloc: at 'lslOpList.c:56' for 224 bytes, got '0x8227500|s5'
-991866207: 21176: *** free: at 'lslOpList.c:69' pnt '0x8227400|s6': size 208, alloced at 'lslOpList.c:56'
-991866207: 21177: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceb00|s3'
-991866207: 21178: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cee00|s1'
-991866207: 21179: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cee40|s1'
-991866207: 21180: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cee80|s1'
-991866207: 21181: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ceec0|s1'
-991866207: 21182: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0580|s1'
-991866207: 21183: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d05a0|s1'
-991866207: 21184: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d05c0|s1'
-991866207: 21185: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d05e0|s1'
-991866207: 21186: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0600|s1'
-991866207: 21187: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cef00|s1'
-991866207: 21188: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0620|s1'
-991866207: 21189: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0640|s1'
-991866207: 21190: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cef40|s1'
-991866207: 21191: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cef80|s1'
-991866207: 21192: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0660|s1'
-991866207: 21193: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83cefc0|s1'
-991866207: 21194: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0680|s1'
-991866207: 21195: *** free: at 'abstract.c:5702' pnt '0x83d0680|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 21196: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ccf40|s3'
-991866207: 21197: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3000|s1'
-991866207: 21198: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3040|s1'
-991866207: 21199: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3080|s1'
-991866207: 21200: checking heap
-991866207: 21200: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d30c0|s1'
-991866207: 21201: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d06a0|s1'
-991866207: 21202: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d06c0|s1'
-991866207: 21203: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d06e0|s1'
-991866207: 21204: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0700|s1'
-991866207: 21205: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0720|s1'
-991866207: 21206: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3100|s1'
-991866207: 21207: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0740|s1'
-991866207: 21208: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0760|s1'
-991866207: 21209: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3140|s1'
-991866207: 21210: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3180|s1'
-991866207: 21211: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0780|s1'
-991866207: 21212: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d31c0|s1'
-991866207: 21213: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d07a0|s1'
-991866207: 21214: *** free: at 'abstract.c:5702' pnt '0x83d07a0|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 21215: *** free: at 'ltokenList.c:228' pnt '0x83d0760|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21216: *** free: at 'ltokenList.c:229' pnt '0x83d0740|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21217: *** free: at 'ltoken.c:320' pnt '0x83d3180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21218: *** free: at 'ltoken.c:320' pnt '0x83d3100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21219: *** free: at 'abstract.c:5728' pnt '0x83d0780|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 21220: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d3200|s1'
-991866207: 21221: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3240|s1'
-991866207: 21222: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3280|s1'
-991866207: 21223: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d32c0|s1'
-991866207: 21224: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3300|s1'
-991866207: 21225: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3340|s1'
-991866207: 21226: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3380|s1'
-991866207: 21227: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d33c0|s1'
-991866207: 21228: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0680|s3'
-991866207: 21229: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d07c0|s1'
-991866207: 21230: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d07e0|s1'
-991866207: 21231: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0800|s1'
-991866207: 21232: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0820|s1'
-991866207: 21233: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3400|s1'
-991866207: 21234: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d07a0|s3'
-991866207: 21235: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0760|s3'
-991866207: 21236: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3440|s1'
-991866207: 21237: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3180|s3'
-991866207: 21238: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3100|s3'
-991866207: 21239: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0780|s3'
-991866207: 21240: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3480|s1'
-991866207: 21241: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0740|s3'
-991866207: 21242: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0840|s1'
-991866207: 21243: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0860|s1'
-991866207: 21244: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0880|s1'
-991866207: 21245: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d08a0|s1'
-991866207: 21246: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d08c0|s1'
-991866207: 21247: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d34c0|s1'
-991866207: 21248: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3500|s1'
-991866207: 21249: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3540|s1'
-991866207: 21250: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3580|s1'
-991866207: 21251: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d35c0|s1'
-991866207: 21252: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3600|s1'
-991866207: 21253: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3640|s1'
-991866207: 21254: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3680|s1'
-991866207: 21255: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d08e0|s1'
-991866207: 21256: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0900|s1'
-991866207: 21257: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d0920|s1'
-991866207: 21258: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0940|s1'
-991866207: 21259: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0960|s1'
-991866207: 21260: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d36c0|s1'
-991866207: 21261: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0980|s1'
-991866207: 21262: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d09a0|s1'
-991866207: 21263: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3700|s1'
-991866207: 21264: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3740|s1'
-991866207: 21265: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3780|s1'
-991866207: 21266: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d09c0|s1'
-991866207: 21267: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d37c0|s1'
-991866207: 21268: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d09e0|s1'
-991866207: 21269: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0a00|s1'
-991866207: 21270: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0a20|s1'
-991866207: 21271: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0a40|s1'
-991866207: 21272: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d0a60|s1'
-991866207: 21273: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d0a80|s1'
-991866207: 21274: *** alloc: at 'lslOpList.c:56' for 240 bytes, got '0x8227400|s7'
-991866207: 21275: *** free: at 'lslOpList.c:69' pnt '0x8227500|s6': size 224, alloced at 'lslOpList.c:56'
-991866207: 21276: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d3800|s1'
-991866207: 21277: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3840|s1'
-991866207: 21278: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3880|s1'
-991866207: 21279: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d38c0|s1'
-991866207: 21280: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3900|s1'
-991866207: 21281: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3940|s1'
-991866207: 21282: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3980|s1'
-991866207: 21283: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d39c0|s1'
-991866207: 21284: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0aa0|s1'
-991866207: 21285: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0ac0|s1'
-991866207: 21286: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d0ae0|s1'
-991866207: 21287: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0b00|s1'
-991866207: 21288: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0b20|s1'
-991866207: 21289: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3a00|s1'
-991866207: 21290: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0b40|s1'
-991866207: 21291: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0b60|s1'
-991866207: 21292: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3a40|s1'
-991866207: 21293: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3a80|s1'
-991866207: 21294: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3ac0|s1'
-991866207: 21295: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0b80|s1'
-991866207: 21296: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3b00|s1'
-991866207: 21297: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0ba0|s1'
-991866207: 21298: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0bc0|s1'
-991866207: 21299: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0be0|s1'
-991866207: 21300: checking heap
-991866207: 21300: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0c00|s1'
-991866207: 21301: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d0c20|s1'
-991866207: 21302: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d0c40|s1'
-991866207: 21303: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d3b40|s1'
-991866207: 21304: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3b80|s1'
-991866207: 21305: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3bc0|s1'
-991866207: 21306: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3c00|s1'
-991866207: 21307: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3c40|s1'
-991866207: 21308: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3c80|s1'
-991866207: 21309: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3cc0|s1'
-991866207: 21310: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3d00|s1'
-991866207: 21311: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0c60|s1'
-991866207: 21312: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d0c80|s1'
-991866207: 21313: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d0ca0|s1'
-991866207: 21314: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0cc0|s1'
-991866207: 21315: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0ce0|s1'
-991866207: 21316: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3d40|s1'
-991866207: 21317: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0d00|s1'
-991866207: 21318: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0d20|s1'
-991866207: 21319: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3d80|s1'
-991866207: 21320: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3dc0|s1'
-991866207: 21321: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3e00|s1'
-991866207: 21322: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0d40|s1'
-991866207: 21323: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3e40|s1'
-991866207: 21324: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0d60|s1'
-991866207: 21325: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0d80|s1'
-991866207: 21326: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0da0|s1'
-991866207: 21327: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0dc0|s1'
-991866207: 21328: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d0de0|s1'
-991866207: 21329: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d0e00|s1'
-991866207: 21330: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d3e80|s1'
-991866207: 21331: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3ec0|s1'
-991866207: 21332: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3f00|s1'
-991866207: 21333: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3f40|s1'
-991866207: 21334: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3f80|s1'
-991866207: 21335: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0e20|s1'
-991866207: 21336: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0e40|s1'
-991866207: 21337: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0e60|s1'
-991866207: 21338: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0e80|s1'
-991866207: 21339: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d0ea0|s1'
-991866207: 21340: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d3fc0|s1'
-991866207: 21341: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d0ec0|s1'
-991866207: 21342: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d0ee0|s1'
-991866207: 21343: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4000|s1'
-991866207: 21344: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d0f00|s1'
-991866207: 21345: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4040|s1'
-991866207: 21346: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0f20|s1'
-991866207: 21347: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d0f40|s1'
-991866207: 21348: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d0f60|s1'
-991866207: 21349: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d0f80|s1'
-991866207: 21350: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d0fa0|s1'
-991866207: 21351: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d0fc0|s1'
-991866207: 21352: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4080|s1'
-991866207: 21353: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d40c0|s1'
-991866207: 21354: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4100|s1'
-991866207: 21355: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4140|s1'
-991866207: 21356: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d0fe0|s1'
-991866207: 21357: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83c9f00|s3'
-991866207: 21358: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83c9ee0|s3'
-991866207: 21359: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6000|s1'
-991866207: 21360: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6020|s1'
-991866207: 21361: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4180|s1'
-991866207: 21362: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6040|s1'
-991866207: 21363: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6060|s1'
-991866207: 21364: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d41c0|s1'
-991866207: 21365: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6080|s1'
-991866207: 21366: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4200|s1'
-991866207: 21367: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d60a0|s1'
-991866207: 21368: *** free: at 'abstract.c:5702' pnt '0x83d60a0|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 21369: *** alloc: at 'lslOpList.c:56' for 256 bytes, got '0x8227500|s7'
-991866207: 21370: *** free: at 'lslOpList.c:69' pnt '0x8227400|s8': size 240, alloced at 'lslOpList.c:56'
-991866207: 21371: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4240|s1'
-991866207: 21372: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4280|s1'
-991866207: 21373: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d42c0|s1'
-991866207: 21374: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4300|s1'
-991866207: 21375: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d60c0|s1'
-991866207: 21376: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d60e0|s1'
-991866207: 21377: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6100|s1'
-991866207: 21378: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6120|s1'
-991866207: 21379: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6140|s1'
-991866207: 21380: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4340|s1'
-991866207: 21381: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6160|s1'
-991866207: 21382: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6180|s1'
-991866207: 21383: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4380|s1'
-991866207: 21384: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d61a0|s1'
-991866207: 21385: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d43c0|s1'
-991866207: 21386: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d61c0|s1'
-991866207: 21387: *** free: at 'abstract.c:5702' pnt '0x83d61c0|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 21388: *** free: at 'ltokenList.c:228' pnt '0x83d6180|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21389: *** free: at 'ltokenList.c:229' pnt '0x83d6160|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21390: *** free: at 'ltoken.c:320' pnt '0x83d4380|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21391: *** free: at 'ltoken.c:320' pnt '0x83d4340|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21392: *** free: at 'abstract.c:5728' pnt '0x83d61a0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 21393: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d4400|s1'
-991866207: 21394: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4440|s1'
-991866207: 21395: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4480|s1'
-991866207: 21396: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d44c0|s1'
-991866207: 21397: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4500|s1'
-991866207: 21398: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d60a0|s3'
-991866207: 21399: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d61e0|s1'
-991866207: 21400: checking heap
-991866207: 21400: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6200|s1'
-991866207: 21401: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6220|s1'
-991866207: 21402: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6240|s1'
-991866207: 21403: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4540|s1'
-991866207: 21404: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6260|s1'
-991866207: 21405: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6280|s1'
-991866207: 21406: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4580|s1'
-991866207: 21407: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d61c0|s3'
-991866207: 21408: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d45c0|s1'
-991866207: 21409: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6160|s3'
-991866207: 21410: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d6180|s3'
-991866207: 21411: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d62a0|s1'
-991866207: 21412: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d61a0|s3'
-991866207: 21413: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d62c0|s1'
-991866207: 21414: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d62e0|s1'
-991866207: 21415: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4340|s3'
-991866207: 21416: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4380|s3'
-991866207: 21417: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4600|s1'
-991866207: 21418: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4640|s1'
-991866207: 21419: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6300|s1'
-991866207: 21420: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6320|s1'
-991866207: 21421: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6340|s1'
-991866207: 21422: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6360|s1'
-991866207: 21423: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6380|s1'
-991866207: 21424: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4680|s1'
-991866207: 21425: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d63a0|s1'
-991866207: 21426: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d63c0|s1'
-991866207: 21427: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d46c0|s1'
-991866207: 21428: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d63e0|s1'
-991866207: 21429: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4700|s1'
-991866207: 21430: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6400|s1'
-991866207: 21431: *** free: at 'abstract.c:5702' pnt '0x83d6400|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 21432: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4740|s1'
-991866207: 21433: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4780|s1'
-991866207: 21434: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d47c0|s1'
-991866207: 21435: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4800|s1'
-991866207: 21436: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6420|s1'
-991866207: 21437: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6440|s1'
-991866207: 21438: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6460|s1'
-991866207: 21439: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6480|s1'
-991866207: 21440: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d64a0|s1'
-991866207: 21441: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4840|s1'
-991866207: 21442: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d64c0|s1'
-991866207: 21443: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d64e0|s1'
-991866207: 21444: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4880|s1'
-991866207: 21445: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6500|s1'
-991866207: 21446: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d48c0|s1'
-991866207: 21447: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6520|s1'
-991866207: 21448: *** free: at 'abstract.c:5702' pnt '0x83d6520|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 21449: *** free: at 'ltokenList.c:228' pnt '0x83d64e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21450: *** free: at 'ltokenList.c:229' pnt '0x83d64c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21451: *** free: at 'ltoken.c:320' pnt '0x83d4880|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21452: *** free: at 'ltoken.c:320' pnt '0x83d4840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21453: *** free: at 'abstract.c:5728' pnt '0x83d6500|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 21454: *** alloc: at 'lslOpList.c:56' for 272 bytes, got '0x822d600|s1'
-991866207: 21455: *** free: at 'lslOpList.c:69' pnt '0x8227500|s8': size 256, alloced at 'lslOpList.c:56'
-991866207: 21456: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4900|s1'
-991866207: 21457: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d4940|s1'
-991866207: 21458: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4980|s1'
-991866207: 21459: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d49c0|s1'
-991866207: 21460: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4a00|s1'
-991866207: 21461: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4a40|s1'
-991866207: 21462: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4a80|s1'
-991866207: 21463: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d6400|s3'
-991866207: 21464: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6540|s1'
-991866207: 21465: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d6560|s1'
-991866207: 21466: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d6580|s1'
-991866207: 21467: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d65a0|s1'
-991866207: 21468: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6520|s3'
-991866207: 21469: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4ac0|s1'
-991866207: 21470: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d64c0|s3'
-991866207: 21471: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d64e0|s3'
-991866207: 21472: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4840|s3'
-991866207: 21473: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4880|s3'
-991866207: 21474: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6500|s3'
-991866207: 21475: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d65c0|s1'
-991866207: 21476: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4b00|s1'
-991866207: 21477: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d65e0|s1'
-991866207: 21478: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d6600|s1'
-991866207: 21479: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d6620|s1'
-991866207: 21480: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d6640|s1'
-991866207: 21481: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d6660|s1'
-991866207: 21482: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d6680|s1'
-991866207: 21483: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4b40|s1'
-991866207: 21484: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4b80|s1'
-991866207: 21485: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4bc0|s1'
-991866207: 21486: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4c00|s1'
-991866207: 21487: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4c40|s1'
-991866207: 21488: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4c80|s1'
-991866207: 21489: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d66a0|s1'
-991866207: 21490: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d66c0|s1'
-991866207: 21491: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d66e0|s1'
-991866207: 21492: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d6700|s1'
-991866207: 21493: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6720|s1'
-991866207: 21494: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6740|s1'
-991866207: 21495: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4cc0|s1'
-991866207: 21496: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6760|s1'
-991866207: 21497: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6780|s1'
-991866207: 21498: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4d00|s1'
-991866207: 21499: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4d40|s1'
-991866207: 21500: checking heap
-991866207: 21500: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d67a0|s1'
-991866207: 21501: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d67c0|s1'
-991866207: 21502: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4d80|s1'
-991866207: 21503: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d67e0|s1'
-991866207: 21504: *** free: at 'ltoken.c:320' pnt '0x83d4d80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21505: *** free: at 'abstract.c:5688' pnt '0x83d67c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 21506: *** free: at 'abstract.c:5702' pnt '0x83d67e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 21507: *** free: at 'ltokenList.c:228' pnt '0x83d6780|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21508: *** free: at 'ltokenList.c:229' pnt '0x83d6760|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21509: *** free: at 'ltoken.c:320' pnt '0x83d4d40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21510: *** free: at 'ltoken.c:320' pnt '0x83d4cc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21511: *** free: at 'abstract.c:5728' pnt '0x83d67a0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 21512: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4dc0|s1'
-991866207: 21513: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d4e00|s1'
-991866207: 21514: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4e40|s1'
-991866207: 21515: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4e80|s1'
-991866207: 21516: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4ec0|s1'
-991866207: 21517: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4f00|s1'
-991866207: 21518: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4f40|s1'
-991866207: 21519: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4f80|s1'
-991866207: 21520: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4fc0|s1'
-991866207: 21521: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8000|s1'
-991866207: 21522: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d6800|s1'
-991866207: 21523: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6820|s1'
-991866207: 21524: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d6840|s1'
-991866207: 21525: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d67c0|s3'
-991866207: 21526: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d67e0|s3'
-991866207: 21527: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6780|s3'
-991866207: 21528: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8040|s1'
-991866207: 21529: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6760|s3'
-991866207: 21530: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6860|s1'
-991866207: 21531: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8080|s1'
-991866207: 21532: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d80c0|s1'
-991866207: 21533: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8100|s1'
-991866207: 21534: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d67a0|s3'
-991866207: 21535: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d6880|s1'
-991866207: 21536: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8140|s1'
-991866207: 21537: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d68a0|s1'
-991866207: 21538: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d68c0|s1'
-991866207: 21539: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d68e0|s1'
-991866207: 21540: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d6900|s1'
-991866207: 21541: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d6920|s1'
-991866207: 21542: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d6940|s1'
-991866207: 21543: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8180|s1'
-991866207: 21544: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d81c0|s1'
-991866207: 21545: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8200|s1'
-991866207: 21546: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8240|s1'
-991866207: 21547: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8280|s1'
-991866207: 21548: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d82c0|s1'
-991866207: 21549: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8300|s1'
-991866207: 21550: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8340|s1'
-991866207: 21551: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8380|s1'
-991866207: 21552: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d6960|s1'
-991866207: 21553: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6980|s1'
-991866207: 21554: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d69a0|s1'
-991866207: 21555: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d69c0|s1'
-991866207: 21556: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d69e0|s1'
-991866207: 21557: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6a00|s1'
-991866207: 21558: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d83c0|s1'
-991866207: 21559: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6a20|s1'
-991866207: 21560: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6a40|s1'
-991866207: 21561: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8400|s1'
-991866207: 21562: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8440|s1'
-991866207: 21563: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8480|s1'
-991866207: 21564: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6a60|s1'
-991866207: 21565: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d6a80|s1'
-991866207: 21566: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d84c0|s1'
-991866207: 21567: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6aa0|s1'
-991866207: 21568: *** free: at 'ltoken.c:320' pnt '0x83d84c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21569: *** free: at 'abstract.c:5688' pnt '0x83d6a80|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 21570: *** free: at 'abstract.c:5702' pnt '0x83d6aa0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 21571: *** free: at 'ltokenList.c:228' pnt '0x83d6a40|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 21572: *** free: at 'ltokenList.c:229' pnt '0x83d6a20|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 21573: *** free: at 'ltoken.c:320' pnt '0x83d8480|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21574: *** free: at 'ltoken.c:320' pnt '0x83d83c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 21575: *** free: at 'abstract.c:5728' pnt '0x83d6a60|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 21576: *** alloc: at 'lslOpList.c:56' for 288 bytes, got '0x822d800|s1'
-991866207: 21577: *** free: at 'lslOpList.c:69' pnt '0x822d600|s2': size 272, alloced at 'lslOpList.c:56'
-991866207: 21578: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d8500|s1'
-991866207: 21579: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8540|s1'
-991866207: 21580: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8580|s1'
-991866207: 21581: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d85c0|s1'
-991866207: 21582: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8600|s1'
-991866207: 21583: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6ac0|s1'
-991866207: 21584: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6ae0|s1'
-991866207: 21585: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6b00|s1'
-991866207: 21586: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6b20|s1'
-991866207: 21587: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6b40|s1'
-991866207: 21588: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d84c0|s3'
-991866207: 21589: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6a80|s3'
-991866207: 21590: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6aa0|s3'
-991866207: 21591: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8640|s1'
-991866207: 21592: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6a20|s3'
-991866207: 21593: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8480|s3'
-991866207: 21594: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6a40|s3'
-991866207: 21595: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d6a60|s3'
-991866207: 21596: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d6b60|s1'
-991866207: 21597: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d6b80|s1'
-991866207: 21598: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d6ba0|s1'
-991866207: 21599: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d6bc0|s1'
-991866207: 21600: checking heap
-991866207: 21600: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d83c0|s3'
-991866207: 21601: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d8680|s1'
-991866207: 21602: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d86c0|s1'
-991866207: 21603: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8700|s1'
-991866207: 21604: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8740|s1'
-991866207: 21605: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8780|s1'
-991866207: 21606: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d87c0|s1'
-991866207: 21607: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8800|s1'
-991866207: 21608: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8840|s1'
-991866207: 21609: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8880|s1'
-991866207: 21610: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d6be0|s1'
-991866207: 21611: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6c00|s1'
-991866207: 21612: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d6c20|s1'
-991866207: 21613: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d6c40|s1'
-991866207: 21614: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6c60|s1'
-991866207: 21615: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6c80|s1'
-991866207: 21616: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d88c0|s1'
-991866207: 21617: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6ca0|s1'
-991866207: 21618: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6cc0|s1'
-991866207: 21619: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8900|s1'
-991866207: 21620: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8940|s1'
-991866207: 21621: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8980|s1'
-991866207: 21622: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6ce0|s1'
-991866207: 21623: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d6d00|s1'
-991866207: 21624: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d89c0|s1'
-991866207: 21625: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6d20|s1'
-991866207: 21626: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d6d40|s1'
-991866207: 21627: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d6d60|s1'
-991866207: 21628: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d6d80|s1'
-991866207: 21629: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d6da0|s1'
-991866207: 21630: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d6dc0|s1'
-991866207: 21631: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8a00|s1'
-991866207: 21632: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d8a40|s1'
-991866207: 21633: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8a80|s1'
-991866207: 21634: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8ac0|s1'
-991866207: 21635: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8b00|s1'
-991866207: 21636: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8b40|s1'
-991866207: 21637: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8b80|s1'
-991866207: 21638: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8bc0|s1'
-991866207: 21639: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8c00|s1'
-991866207: 21640: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8c40|s1'
-991866207: 21641: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83d6de0|s1'
-991866207: 21642: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6e00|s1'
-991866207: 21643: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83d6e20|s1'
-991866207: 21644: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83d6e40|s1'
-991866207: 21645: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6e60|s1'
-991866207: 21646: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83d6e80|s1'
-991866207: 21647: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8c80|s1'
-991866207: 21648: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83d6ea0|s1'
-991866207: 21649: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83d6ec0|s1'
-991866207: 21650: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8cc0|s1'
-991866207: 21651: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8d00|s1'
-991866207: 21652: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8d40|s1'
-991866207: 21653: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83d6ee0|s1'
-991866207: 21654: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83d6f00|s1'
-991866207: 21655: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8d80|s1'
-991866207: 21656: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83d6f20|s1'
-991866207: 21657: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83d6f40|s1'
-991866207: 21658: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83d6f60|s1'
-991866207: 21659: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83d6f80|s1'
-991866207: 21660: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83d6fa0|s1'
-991866207: 21661: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83d6fc0|s1'
-991866207: 21662: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83d8dc0|s1'
-991866207: 21663: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8e00|s1'
-991866207: 21664: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8e40|s1'
-991866207: 21665: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8e80|s1'
-991866207: 21666: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8ec0|s1'
-991866207: 21667: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8f00|s1'
-991866207: 21668: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8f40|s1'
-991866207: 21669: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8f80|s1'
-991866207: 21670: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83d6fe0|s1'
-991866207: 21671: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83da000|s1'
-991866207: 21672: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83da020|s1'
-991866207: 21673: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da040|s1'
-991866207: 21674: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83da060|s1'
-991866207: 21675: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d8fc0|s1'
-991866207: 21676: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83da080|s1'
-991866207: 21677: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83da0a0|s1'
-991866207: 21678: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4cc0|s3'
-991866207: 21679: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4d40|s3'
-991866207: 21680: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83d4d80|s3'
-991866207: 21681: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da0c0|s1'
-991866207: 21682: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc000|s1'
-991866207: 21683: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da0e0|s1'
-991866207: 21684: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83da100|s1'
-991866207: 21685: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83da120|s1'
-991866207: 21686: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83da140|s1'
-991866207: 21687: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83da160|s1'
-991866207: 21688: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83da180|s1'
-991866207: 21689: *** alloc: at 'lslOpList.c:56' for 304 bytes, got '0x822d600|s3'
-991866207: 21690: *** free: at 'lslOpList.c:69' pnt '0x822d800|s2': size 288, alloced at 'lslOpList.c:56'
-991866207: 21691: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dc040|s1'
-991866207: 21692: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc080|s1'
-991866207: 21693: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc0c0|s1'
-991866207: 21694: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc100|s1'
-991866207: 21695: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc140|s1'
-991866207: 21696: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc180|s1'
-991866207: 21697: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da1a0|s1'
-991866207: 21698: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83da1c0|s1'
-991866207: 21699: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83da1e0|s1'
-991866207: 21700: checking heap
-991866207: 21700: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da200|s1'
-991866207: 21701: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83da220|s1'
-991866207: 21702: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc1c0|s1'
-991866207: 21703: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83da240|s1'
-991866207: 21704: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83da260|s1'
-991866207: 21705: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc200|s1'
-991866207: 21706: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc240|s1'
-991866207: 21707: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da280|s1'
-991866207: 21708: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc280|s1'
-991866207: 21709: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da2a0|s1'
-991866207: 21710: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83da2c0|s1'
-991866207: 21711: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83da2e0|s1'
-991866207: 21712: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83da300|s1'
-991866207: 21713: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83da320|s1'
-991866207: 21714: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83da340|s1'
-991866207: 21715: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dc2c0|s1'
-991866207: 21716: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc300|s1'
-991866207: 21717: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc340|s1'
-991866207: 21718: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc380|s1'
-991866207: 21719: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc3c0|s1'
-991866207: 21720: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc400|s1'
-991866207: 21721: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da360|s1'
-991866207: 21722: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83da380|s1'
-991866207: 21723: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83da3a0|s1'
-991866207: 21724: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da3c0|s1'
-991866207: 21725: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83da3e0|s1'
-991866207: 21726: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc440|s1'
-991866207: 21727: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83da400|s1'
-991866207: 21728: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83da420|s1'
-991866207: 21729: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc480|s1'
-991866207: 21730: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc4c0|s1'
-991866207: 21731: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da440|s1'
-991866207: 21732: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc500|s1'
-991866207: 21733: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da460|s1'
-991866207: 21734: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83da480|s1'
-991866207: 21735: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83da4a0|s1'
-991866207: 21736: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83da4c0|s1'
-991866207: 21737: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83da4e0|s1'
-991866207: 21738: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83da500|s1'
-991866207: 21739: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dc540|s1'
-991866207: 21740: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc580|s1'
-991866207: 21741: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc5c0|s1'
-991866207: 21742: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc600|s1'
-991866207: 21743: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc640|s1'
-991866207: 21744: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc680|s1'
-991866207: 21745: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da520|s1'
-991866207: 21746: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83da540|s1'
-991866207: 21747: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83da560|s1'
-991866207: 21748: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da580|s1'
-991866207: 21749: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83da5a0|s1'
-991866207: 21750: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc6c0|s1'
-991866207: 21751: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83da5c0|s1'
-991866207: 21752: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83da5e0|s1'
-991866207: 21753: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc700|s1'
-991866207: 21754: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc740|s1'
-991866207: 21755: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da600|s1'
-991866207: 21756: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc780|s1'
-991866207: 21757: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da620|s1'
-991866207: 21758: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83da640|s1'
-991866207: 21759: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83da660|s1'
-991866207: 21760: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83da680|s1'
-991866207: 21761: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83da6a0|s1'
-991866207: 21762: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83da6c0|s1'
-991866207: 21763: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dc7c0|s1'
-991866207: 21764: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc800|s1'
-991866207: 21765: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc840|s1'
-991866207: 21766: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc880|s1'
-991866207: 21767: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc8c0|s1'
-991866207: 21768: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc900|s1'
-991866207: 21769: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da6e0|s1'
-991866207: 21770: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83da700|s1'
-991866207: 21771: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83da720|s1'
-991866207: 21772: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da740|s1'
-991866207: 21773: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83da760|s1'
-991866207: 21774: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc940|s1'
-991866207: 21775: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83da780|s1'
-991866207: 21776: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83da7a0|s1'
-991866207: 21777: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc980|s1'
-991866207: 21778: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dc9c0|s1'
-991866207: 21779: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da7c0|s1'
-991866207: 21780: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dca00|s1'
-991866207: 21781: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da7e0|s1'
-991866207: 21782: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83da800|s1'
-991866207: 21783: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83da820|s1'
-991866207: 21784: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83da840|s1'
-991866207: 21785: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83da860|s1'
-991866207: 21786: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83da880|s1'
-991866207: 21787: *** alloc: at 'lslOpList.c:56' for 320 bytes, got '0x822d800|s3'
-991866207: 21788: *** free: at 'lslOpList.c:69' pnt '0x822d600|s4': size 304, alloced at 'lslOpList.c:56'
-991866207: 21789: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dca40|s1'
-991866207: 21790: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dca80|s1'
-991866207: 21791: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcac0|s1'
-991866207: 21792: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcb00|s1'
-991866207: 21793: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcb40|s1'
-991866207: 21794: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcb80|s1'
-991866207: 21795: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da8a0|s1'
-991866207: 21796: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83da8c0|s1'
-991866207: 21797: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83da8e0|s1'
-991866207: 21798: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da900|s1'
-991866207: 21799: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83da920|s1'
-991866207: 21800: checking heap
-991866207: 21800: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcbc0|s1'
-991866207: 21801: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83da940|s1'
-991866207: 21802: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83da960|s1'
-991866207: 21803: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcc00|s1'
-991866207: 21804: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcc40|s1'
-991866207: 21805: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83da980|s1'
-991866207: 21806: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcc80|s1'
-991866207: 21807: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83da9a0|s1'
-991866207: 21808: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83da9c0|s1'
-991866207: 21809: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83da9e0|s1'
-991866207: 21810: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83daa00|s1'
-991866207: 21811: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83daa20|s1'
-991866207: 21812: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83daa40|s1'
-991866207: 21813: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dccc0|s1'
-991866207: 21814: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcd00|s1'
-991866207: 21815: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcd40|s1'
-991866207: 21816: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcd80|s1'
-991866207: 21817: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcdc0|s1'
-991866207: 21818: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dce00|s1'
-991866207: 21819: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dce40|s1'
-991866207: 21820: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dce80|s1'
-991866207: 21821: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83daa60|s1'
-991866207: 21822: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83daa80|s1'
-991866207: 21823: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83daaa0|s1'
-991866207: 21824: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83daac0|s1'
-991866207: 21825: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83daae0|s1'
-991866207: 21826: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcec0|s1'
-991866207: 21827: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dab00|s1'
-991866207: 21828: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dab20|s1'
-991866207: 21829: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcf00|s1'
-991866207: 21830: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcf40|s1'
-991866207: 21831: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcf80|s1'
-991866207: 21832: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dab40|s1'
-991866207: 21833: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dcfc0|s1'
-991866207: 21834: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dab60|s1'
-991866207: 21835: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83dab80|s1'
-991866207: 21836: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83daba0|s1'
-991866207: 21837: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83dabc0|s1'
-991866207: 21838: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83dabe0|s1'
-991866207: 21839: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83dac00|s1'
-991866207: 21840: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dd000|s1'
-991866207: 21841: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd040|s1'
-991866207: 21842: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd080|s1'
-991866207: 21843: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd0c0|s1'
-991866207: 21844: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd100|s1'
-991866207: 21845: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd140|s1'
-991866207: 21846: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd180|s1'
-991866207: 21847: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd1c0|s1'
-991866207: 21848: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dac20|s1'
-991866207: 21849: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83dac40|s1'
-991866207: 21850: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83dac60|s1'
-991866207: 21851: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dac80|s1'
-991866207: 21852: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83daca0|s1'
-991866207: 21853: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd200|s1'
-991866207: 21854: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dacc0|s1'
-991866207: 21855: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dace0|s1'
-991866207: 21856: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd240|s1'
-991866207: 21857: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd280|s1'
-991866207: 21858: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd2c0|s1'
-991866207: 21859: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dad00|s1'
-991866207: 21860: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd300|s1'
-991866207: 21861: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dad20|s1'
-991866207: 21862: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83dad40|s1'
-991866207: 21863: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83dad60|s1'
-991866207: 21864: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83dad80|s1'
-991866207: 21865: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83dada0|s1'
-991866207: 21866: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83dadc0|s1'
-991866207: 21867: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dd340|s1'
-991866207: 21868: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd380|s1'
-991866207: 21869: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd3c0|s1'
-991866207: 21870: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd400|s1'
-991866207: 21871: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd440|s1'
-991866207: 21872: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd480|s1'
-991866207: 21873: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd4c0|s1'
-991866207: 21874: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd500|s1'
-991866207: 21875: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd540|s1'
-991866207: 21876: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd580|s1'
-991866207: 21877: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dade0|s1'
-991866207: 21878: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83dae00|s1'
-991866207: 21879: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83dae20|s1'
-991866207: 21880: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dae40|s1'
-991866207: 21881: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83dae60|s1'
-991866207: 21882: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd5c0|s1'
-991866207: 21883: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dae80|s1'
-991866207: 21884: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83daea0|s1'
-991866207: 21885: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd600|s1'
-991866207: 21886: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd640|s1'
-991866207: 21887: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd680|s1'
-991866207: 21888: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd6c0|s1'
-991866207: 21889: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83daec0|s1'
-991866207: 21890: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd700|s1'
-991866207: 21891: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83daee0|s1'
-991866207: 21892: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83daf00|s1'
-991866207: 21893: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83daf20|s1'
-991866207: 21894: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83daf40|s1'
-991866207: 21895: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83daf60|s1'
-991866207: 21896: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83daf80|s1'
-991866207: 21897: *** alloc: at 'lslOpList.c:56' for 336 bytes, got '0x822d600|s5'
-991866207: 21898: *** free: at 'lslOpList.c:69' pnt '0x822d800|s4': size 320, alloced at 'lslOpList.c:56'
-991866207: 21899: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dd740|s1'
-991866207: 21900: checking heap
-991866207: 21900: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd780|s1'
-991866207: 21901: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd7c0|s1'
-991866207: 21902: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd800|s1'
-991866207: 21903: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd840|s1'
-991866207: 21904: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd880|s1'
-991866207: 21905: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dafa0|s1'
-991866207: 21906: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83dafc0|s1'
-991866207: 21907: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83dafe0|s1'
-991866207: 21908: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df000|s1'
-991866207: 21909: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83df020|s1'
-991866207: 21910: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd8c0|s1'
-991866207: 21911: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df040|s1'
-991866207: 21912: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df060|s1'
-991866207: 21913: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd900|s1'
-991866207: 21914: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd940|s1'
-991866207: 21915: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df080|s1'
-991866207: 21916: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dd980|s1'
-991866207: 21917: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df0a0|s1'
-991866207: 21918: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83df0c0|s1'
-991866207: 21919: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83df0e0|s1'
-991866207: 21920: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83df100|s1'
-991866207: 21921: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83df120|s1'
-991866207: 21922: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83df140|s1'
-991866207: 21923: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dd9c0|s1'
-991866207: 21924: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dda00|s1'
-991866207: 21925: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dda40|s1'
-991866207: 21926: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dda80|s1'
-991866207: 21927: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddac0|s1'
-991866207: 21928: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df160|s1'
-991866207: 21929: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df180|s1'
-991866207: 21930: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df1a0|s1'
-991866207: 21931: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df1c0|s1'
-991866207: 21932: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83df1e0|s1'
-991866207: 21933: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddb00|s1'
-991866207: 21934: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df200|s1'
-991866207: 21935: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df220|s1'
-991866207: 21936: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddb40|s1'
-991866207: 21937: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df240|s1'
-991866207: 21938: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddb80|s1'
-991866207: 21939: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df260|s1'
-991866207: 21940: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83df280|s1'
-991866207: 21941: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83df2a0|s1'
-991866207: 21942: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83df2c0|s1'
-991866207: 21943: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83df2e0|s1'
-991866207: 21944: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83df300|s1'
-991866207: 21945: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83ddbc0|s1'
-991866207: 21946: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddc00|s1'
-991866207: 21947: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddc40|s1'
-991866207: 21948: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddc80|s1'
-991866207: 21949: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddcc0|s1'
-991866207: 21950: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddd00|s1'
-991866207: 21951: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df320|s1'
-991866207: 21952: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83df340|s1'
-991866207: 21953: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83df360|s1'
-991866207: 21954: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df380|s1'
-991866207: 21955: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83df3a0|s1'
-991866207: 21956: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddd40|s1'
-991866207: 21957: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df3c0|s1'
-991866207: 21958: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df3e0|s1'
-991866207: 21959: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddd80|s1'
-991866207: 21960: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dddc0|s1'
-991866207: 21961: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df400|s1'
-991866207: 21962: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dde00|s1'
-991866207: 21963: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df420|s1'
-991866207: 21964: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83df440|s1'
-991866207: 21965: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83df460|s1'
-991866207: 21966: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83df480|s1'
-991866207: 21967: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83df4a0|s1'
-991866207: 21968: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83df4c0|s1'
-991866207: 21969: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83dde40|s1'
-991866207: 21970: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83dde80|s1'
-991866207: 21971: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddec0|s1'
-991866207: 21972: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddf00|s1'
-991866207: 21973: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddf40|s1'
-991866207: 21974: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddf80|s1'
-991866207: 21975: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df4e0|s1'
-991866207: 21976: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83df500|s1'
-991866207: 21977: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83df520|s1'
-991866207: 21978: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df540|s1'
-991866207: 21979: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83df560|s1'
-991866207: 21980: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ddfc0|s1'
-991866207: 21981: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df580|s1'
-991866207: 21982: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df5a0|s1'
-991866207: 21983: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1000|s1'
-991866207: 21984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1040|s1'
-991866207: 21985: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df5c0|s1'
-991866207: 21986: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1080|s1'
-991866207: 21987: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df5e0|s1'
-991866207: 21988: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83df600|s1'
-991866207: 21989: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83df620|s1'
-991866207: 21990: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83df640|s1'
-991866207: 21991: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83df660|s1'
-991866207: 21992: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83df680|s1'
-991866207: 21993: *** alloc: at 'lslOpList.c:56' for 352 bytes, got '0x822d800|s5'
-991866207: 21994: *** free: at 'lslOpList.c:69' pnt '0x822d600|s6': size 336, alloced at 'lslOpList.c:56'
-991866207: 21995: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e10c0|s1'
-991866207: 21996: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1100|s1'
-991866207: 21997: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1140|s1'
-991866207: 21998: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1180|s1'
-991866207: 21999: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e11c0|s1'
-991866207: 22000: checking heap
-991866207: 22000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1200|s1'
-991866207: 22001: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1240|s1'
-991866207: 22002: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1280|s1'
-991866207: 22003: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df6a0|s1'
-991866207: 22004: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83df6c0|s1'
-991866207: 22005: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83df6e0|s1'
-991866207: 22006: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df700|s1'
-991866207: 22007: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83df720|s1'
-991866207: 22008: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e12c0|s1'
-991866207: 22009: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df740|s1'
-991866207: 22010: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df760|s1'
-991866207: 22011: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1300|s1'
-991866207: 22012: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1340|s1'
-991866207: 22013: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1380|s1'
-991866207: 22014: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df780|s1'
-991866207: 22015: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e13c0|s1'
-991866207: 22016: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df7a0|s1'
-991866207: 22017: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83df7c0|s1'
-991866207: 22018: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83df7e0|s1'
-991866207: 22019: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83df800|s1'
-991866207: 22020: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83df820|s1'
-991866207: 22021: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83df840|s1'
-991866207: 22022: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e1400|s1'
-991866207: 22023: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1440|s1'
-991866207: 22024: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1480|s1'
-991866207: 22025: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e14c0|s1'
-991866207: 22026: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1500|s1'
-991866207: 22027: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1540|s1'
-991866207: 22028: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df860|s1'
-991866207: 22029: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83df880|s1'
-991866207: 22030: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83df8a0|s1'
-991866207: 22031: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df8c0|s1'
-991866207: 22032: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83df8e0|s1'
-991866207: 22033: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1580|s1'
-991866207: 22034: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83df900|s1'
-991866207: 22035: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83df920|s1'
-991866207: 22036: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e15c0|s1'
-991866207: 22037: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1600|s1'
-991866207: 22038: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83df940|s1'
-991866207: 22039: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1640|s1'
-991866207: 22040: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83df960|s1'
-991866207: 22041: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83df980|s1'
-991866207: 22042: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83df9a0|s1'
-991866207: 22043: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83df9c0|s1'
-991866207: 22044: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83df9e0|s1'
-991866207: 22045: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83dfa00|s1'
-991866207: 22046: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e1680|s1'
-991866207: 22047: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e16c0|s1'
-991866207: 22048: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1700|s1'
-991866207: 22049: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1740|s1'
-991866207: 22050: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1780|s1'
-991866207: 22051: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e17c0|s1'
-991866207: 22052: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1800|s1'
-991866207: 22053: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1840|s1'
-991866207: 22054: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dfa20|s1'
-991866207: 22055: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83dfa40|s1'
-991866207: 22056: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83dfa60|s1'
-991866207: 22057: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dfa80|s1'
-991866207: 22058: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83dfaa0|s1'
-991866207: 22059: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1880|s1'
-991866207: 22060: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dfac0|s1'
-991866207: 22061: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dfae0|s1'
-991866207: 22062: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e18c0|s1'
-991866207: 22063: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1900|s1'
-991866207: 22064: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1940|s1'
-991866207: 22065: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dfb00|s1'
-991866207: 22066: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1980|s1'
-991866207: 22067: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dfb20|s1'
-991866207: 22068: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83dfb40|s1'
-991866207: 22069: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83dfb60|s1'
-991866207: 22070: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83dfb80|s1'
-991866207: 22071: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83dfba0|s1'
-991866207: 22072: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83dfbc0|s1'
-991866207: 22073: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e19c0|s1'
-991866207: 22074: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1a00|s1'
-991866207: 22075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1a40|s1'
-991866207: 22076: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1a80|s1'
-991866207: 22077: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1ac0|s1'
-991866207: 22078: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1b00|s1'
-991866207: 22079: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dfbe0|s1'
-991866207: 22080: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83dfc00|s1'
-991866207: 22081: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83dfc20|s1'
-991866207: 22082: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dfc40|s1'
-991866207: 22083: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83dfc60|s1'
-991866207: 22084: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1b40|s1'
-991866207: 22085: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dfc80|s1'
-991866207: 22086: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dfca0|s1'
-991866207: 22087: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1b80|s1'
-991866207: 22088: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1bc0|s1'
-991866207: 22089: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dfcc0|s1'
-991866207: 22090: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1c00|s1'
-991866207: 22091: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dfce0|s1'
-991866207: 22092: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83dfd00|s1'
-991866207: 22093: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83dfd20|s1'
-991866207: 22094: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83dfd40|s1'
-991866207: 22095: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83dfd60|s1'
-991866207: 22096: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83dfd80|s1'
-991866207: 22097: *** alloc: at 'lslOpList.c:56' for 368 bytes, got '0x822d600|s7'
-991866207: 22098: *** free: at 'lslOpList.c:69' pnt '0x822d800|s6': size 352, alloced at 'lslOpList.c:56'
-991866207: 22099: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e1c40|s1'
-991866207: 22100: checking heap
-991866207: 22100: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1c80|s1'
-991866207: 22101: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1cc0|s1'
-991866207: 22102: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1d00|s1'
-991866207: 22103: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1d40|s1'
-991866207: 22104: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dfda0|s1'
-991866207: 22105: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dfdc0|s1'
-991866207: 22106: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dfde0|s1'
-991866207: 22107: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dfe00|s1'
-991866207: 22108: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83dfe20|s1'
-991866207: 22109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1d80|s1'
-991866207: 22110: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dfe40|s1'
-991866207: 22111: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dfe60|s1'
-991866207: 22112: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1dc0|s1'
-991866207: 22113: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dfe80|s1'
-991866207: 22114: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1e00|s1'
-991866207: 22115: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dfea0|s1'
-991866207: 22116: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83dfec0|s1'
-991866207: 22117: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83dfee0|s1'
-991866207: 22118: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83dff00|s1'
-991866207: 22119: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83dff20|s1'
-991866207: 22120: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83dff40|s1'
-991866207: 22121: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e1e40|s1'
-991866207: 22122: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1e80|s1'
-991866207: 22123: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1ec0|s1'
-991866207: 22124: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1f00|s1'
-991866207: 22125: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1f40|s1'
-991866207: 22126: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83dff60|s1'
-991866207: 22127: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83dff80|s1'
-991866207: 22128: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83dffa0|s1'
-991866207: 22129: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83dffc0|s1'
-991866207: 22130: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83dffe0|s1'
-991866207: 22131: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1f80|s1'
-991866207: 22132: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3000|s1'
-991866207: 22133: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3020|s1'
-991866207: 22134: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e1fc0|s1'
-991866207: 22135: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3040|s1'
-991866207: 22136: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5000|s1'
-991866207: 22137: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3060|s1'
-991866207: 22138: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3080|s1'
-991866207: 22139: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e30a0|s1'
-991866207: 22140: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e30c0|s1'
-991866207: 22141: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e30e0|s1'
-991866207: 22142: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e3100|s1'
-991866207: 22143: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e5040|s1'
-991866207: 22144: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5080|s1'
-991866207: 22145: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e50c0|s1'
-991866207: 22146: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5100|s1'
-991866207: 22147: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5140|s1'
-991866207: 22148: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3120|s1'
-991866207: 22149: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3140|s1'
-991866207: 22150: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3160|s1'
-991866207: 22151: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3180|s1'
-991866207: 22152: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e31a0|s1'
-991866207: 22153: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5180|s1'
-991866207: 22154: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e31c0|s1'
-991866207: 22155: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e31e0|s1'
-991866207: 22156: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e51c0|s1'
-991866207: 22157: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3200|s1'
-991866207: 22158: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5200|s1'
-991866207: 22159: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3220|s1'
-991866207: 22160: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3240|s1'
-991866207: 22161: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e3260|s1'
-991866207: 22162: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e3280|s1'
-991866207: 22163: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e32a0|s1'
-991866207: 22164: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e32c0|s1'
-991866207: 22165: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e5240|s1'
-991866207: 22166: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5280|s1'
-991866207: 22167: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e52c0|s1'
-991866207: 22168: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5300|s1'
-991866207: 22169: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5340|s1'
-991866207: 22170: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e32e0|s1'
-991866207: 22171: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3300|s1'
-991866207: 22172: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3320|s1'
-991866207: 22173: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3340|s1'
-991866207: 22174: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e3360|s1'
-991866207: 22175: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5380|s1'
-991866207: 22176: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3380|s1'
-991866207: 22177: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e33a0|s1'
-991866207: 22178: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e53c0|s1'
-991866207: 22179: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e33c0|s1'
-991866207: 22180: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5400|s1'
-991866207: 22181: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e33e0|s1'
-991866207: 22182: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3400|s1'
-991866207: 22183: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e3420|s1'
-991866207: 22184: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e3440|s1'
-991866207: 22185: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e3460|s1'
-991866207: 22186: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e3480|s1'
-991866207: 22187: *** alloc: at 'lslOpList.c:56' for 384 bytes, got '0x822d800|s7'
-991866207: 22188: *** free: at 'lslOpList.c:69' pnt '0x822d600|s8': size 368, alloced at 'lslOpList.c:56'
-991866207: 22189: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e5440|s1'
-991866207: 22190: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5480|s1'
-991866207: 22191: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e54c0|s1'
-991866207: 22192: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5500|s1'
-991866207: 22193: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5540|s1'
-991866207: 22194: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e34a0|s1'
-991866207: 22195: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e34c0|s1'
-991866207: 22196: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e34e0|s1'
-991866207: 22197: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3500|s1'
-991866207: 22198: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e3520|s1'
-991866207: 22199: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5580|s1'
-991866207: 22200: checking heap
-991866207: 22200: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3540|s1'
-991866207: 22201: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3560|s1'
-991866207: 22202: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e55c0|s1'
-991866207: 22203: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3580|s1'
-991866207: 22204: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5600|s1'
-991866207: 22205: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e35a0|s1'
-991866207: 22206: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e35c0|s1'
-991866207: 22207: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e35e0|s1'
-991866207: 22208: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e3600|s1'
-991866207: 22209: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e3620|s1'
-991866207: 22210: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e3640|s1'
-991866207: 22211: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e5640|s1'
-991866207: 22212: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5680|s1'
-991866207: 22213: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e56c0|s1'
-991866207: 22214: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5700|s1'
-991866207: 22215: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5740|s1'
-991866207: 22216: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3660|s1'
-991866207: 22217: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3680|s1'
-991866207: 22218: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e36a0|s1'
-991866207: 22219: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e36c0|s1'
-991866207: 22220: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e36e0|s1'
-991866207: 22221: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5780|s1'
-991866207: 22222: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3700|s1'
-991866207: 22223: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3720|s1'
-991866207: 22224: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e57c0|s1'
-991866207: 22225: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3740|s1'
-991866207: 22226: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5800|s1'
-991866207: 22227: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3760|s1'
-991866207: 22228: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3780|s1'
-991866207: 22229: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e37a0|s1'
-991866207: 22230: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e37c0|s1'
-991866207: 22231: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e37e0|s1'
-991866207: 22232: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e3800|s1'
-991866207: 22233: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e5840|s1'
-991866207: 22234: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5880|s1'
-991866207: 22235: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e58c0|s1'
-991866207: 22236: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5900|s1'
-991866207: 22237: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5940|s1'
-991866207: 22238: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3820|s1'
-991866207: 22239: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3840|s1'
-991866207: 22240: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3860|s1'
-991866207: 22241: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3880|s1'
-991866207: 22242: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e38a0|s1'
-991866207: 22243: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5980|s1'
-991866207: 22244: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e38c0|s1'
-991866207: 22245: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e38e0|s1'
-991866207: 22246: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e59c0|s1'
-991866207: 22247: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3900|s1'
-991866207: 22248: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5a00|s1'
-991866207: 22249: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3920|s1'
-991866207: 22250: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3940|s1'
-991866207: 22251: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e3960|s1'
-991866207: 22252: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e3980|s1'
-991866207: 22253: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e39a0|s1'
-991866207: 22254: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e39c0|s1'
-991866207: 22255: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e5a40|s1'
-991866207: 22256: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5a80|s1'
-991866207: 22257: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5ac0|s1'
-991866207: 22258: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5b00|s1'
-991866207: 22259: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5b40|s1'
-991866207: 22260: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e39e0|s1'
-991866207: 22261: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3a00|s1'
-991866207: 22262: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3a20|s1'
-991866207: 22263: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3a40|s1'
-991866207: 22264: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e3a60|s1'
-991866207: 22265: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5b80|s1'
-991866207: 22266: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3a80|s1'
-991866207: 22267: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3aa0|s1'
-991866207: 22268: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5bc0|s1'
-991866207: 22269: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3ac0|s1'
-991866207: 22270: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5c00|s1'
-991866207: 22271: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3ae0|s1'
-991866207: 22272: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3b00|s1'
-991866207: 22273: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e3b20|s1'
-991866207: 22274: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e3b40|s1'
-991866207: 22275: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e3b60|s1'
-991866207: 22276: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e3b80|s1'
-991866207: 22277: *** alloc: at 'lslOpList.c:56' for 400 bytes, got '0x822d600|s9'
-991866207: 22278: *** free: at 'lslOpList.c:69' pnt '0x822d800|s8': size 384, alloced at 'lslOpList.c:56'
-991866207: 22279: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5c40|s1'
-991866207: 22280: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5c80|s1'
-991866207: 22281: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5cc0|s1'
-991866207: 22282: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5d00|s1'
-991866207: 22283: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5d40|s1'
-991866207: 22284: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5d80|s1'
-991866207: 22285: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5dc0|s1'
-991866207: 22286: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5e00|s1'
-991866207: 22287: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5e40|s1'
-991866207: 22288: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5e80|s1'
-991866207: 22289: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e3ba0|s1'
-991866207: 22290: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e3bc0|s1'
-991866207: 22291: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e3be0|s1'
-991866207: 22292: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e3c00|s1'
-991866207: 22293: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3c20|s1'
-991866207: 22294: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e3c40|s1'
-991866207: 22295: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5ec0|s1'
-991866207: 22296: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3c60|s1'
-991866207: 22297: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3c80|s1'
-991866207: 22298: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5f00|s1'
-991866207: 22299: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5f40|s1'
-991866207: 22300: checking heap
-991866207: 22300: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5f80|s1'
-991866207: 22301: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3ca0|s1'
-991866207: 22302: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e3cc0|s1'
-991866207: 22303: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5fc0|s1'
-991866207: 22304: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6000|s1'
-991866207: 22305: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e3ce0|s1'
-991866207: 22306: *** free: at 'ltoken.c:320' pnt '0x83e5fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22307: *** free: at 'ltoken.c:320' pnt '0x83e6000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22308: *** free: at 'abstract.c:5688' pnt '0x83e3cc0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22309: *** free: at 'abstract.c:5702' pnt '0x83e3ce0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22310: *** free: at 'ltokenList.c:228' pnt '0x83e3c80|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 22311: *** free: at 'ltokenList.c:229' pnt '0x83e3c60|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22312: *** free: at 'ltoken.c:320' pnt '0x83e5f80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22313: *** free: at 'ltoken.c:320' pnt '0x83e5ec0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22314: *** free: at 'abstract.c:5728' pnt '0x83e3ca0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 22315: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6040|s1'
-991866207: 22316: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6080|s1'
-991866207: 22317: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e60c0|s1'
-991866207: 22318: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6100|s1'
-991866207: 22319: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6140|s1'
-991866207: 22320: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6180|s1'
-991866207: 22321: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e61c0|s1'
-991866207: 22322: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e3d00|s1'
-991866207: 22323: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e3d20|s1'
-991866207: 22324: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e3d40|s1'
-991866207: 22325: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e3d60|s1'
-991866207: 22326: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3d80|s1'
-991866207: 22327: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e3da0|s1'
-991866207: 22328: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6000|s3'
-991866207: 22329: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3ce0|s3'
-991866207: 22330: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3c80|s3'
-991866207: 22331: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5fc0|s3'
-991866207: 22332: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5f80|s3'
-991866207: 22333: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3c60|s3'
-991866207: 22334: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e3ca0|s3'
-991866207: 22335: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e5ec0|s3'
-991866207: 22336: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6200|s1'
-991866207: 22337: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e3cc0|s3'
-991866207: 22338: *** alloc: at 'symtable.c:328' for 8 bytes, got '0x83e3dc0|s1'
-991866207: 22339: *** alloc: at 'symtable.c:329' for 8 bytes, got '0x83e3de0|s1'
-991866207: 22340: *** alloc: at 'sigNodeSet.c:53' for 12 bytes, got '0x83e3e00|s1'
-991866207: 22341: *** alloc: at 'sigNodeSet.c:57' for 32 bytes, got '0x83e3e20|s1'
-991866207: 22342: *** alloc: at 'symtable.c:1858' for 8 bytes, got '0x83e3e40|s1'
-991866207: 22343: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6240|s1'
-991866207: 22344: *** free: at 'lslOpList.c:105' pnt '0x822d600|s10': size 400, alloced at 'lslOpList.c:56'
-991866207: 22345: *** free: at 'lslOpList.c:106' pnt '0x83b84c0|s4': size 12, alloced at 'lslOpList.c:38'
-991866207: 22346: *** free: at 'ra=0x40092cd9' pnt '0x822d200|s6': size 364, alloced at 'ra=0x400932b1'
-991866207: 22347: *** free: at 'ra=0x80a28ed' pnt '0x83b6500|s2': size 39, alloced at 'ra=0x80e6889'
-991866207: 22348: *** free: at 'ra=0x80a55f5' pnt '0x83b1400|s2': size 840, alloced at 'ra=0x80a560f'
-991866207: 22349: *** free: at 'lslparse.c:105' pnt '0x83b84a0|s2': size 4, alloced at 'lslparse.c:58'
-991866207: 22350: *** alloc: at 'lslparse.c:58' for 4 bytes, got '0x83e3e60|s1'
-991866207: 22351: *** alloc: at 'ltoken.c:76' for 36 bytes, got '0x83e6280|s1'
-991866207: 22352: *** alloc: at 'ra=0x80a560f' for 840 bytes, got '0x83b1800|s1'
-991866207: 22353: *** alloc: at 'ra=0x80e6889' for 39 bytes, got '0x83e62c0|s1'
-991866207: 22354: *** alloc: at 'osd.c:180' for 39 bytes, got '0x83e6300|s1'
-991866207: 22355: *** free: at 'ra=0x80a28ed' pnt '0x83e62c0|s2': size 39, alloced at 'ra=0x80e6889'
-991866207: 22356: *** alloc: at 'ra=0x80e6889' for 39 bytes, got '0x83e6340|s1'
-991866207: 22357: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d800|s9'
-991866207: 22358: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6380|s1'
-991866207: 22359: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e63c0|s1'
-991866207: 22360: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6400|s1'
-991866207: 22361: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6440|s1'
-991866207: 22362: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3e80|s1'
-991866207: 22363: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3ea0|s1'
-991866207: 22364: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3ec0|s1'
-991866207: 22365: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83b84c0|s5'
-991866207: 22366: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e3ee0|s1'
-991866207: 22367: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6500|s3'
-991866207: 22368: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3f00|s1'
-991866207: 22369: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83b84a0|s3'
-991866207: 22370: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6480|s1'
-991866207: 22371: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f20|s1'
-991866207: 22372: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e64c0|s1'
-991866207: 22373: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3f40|s1'
-991866207: 22374: *** free: at 'abstract.c:5702' pnt '0x83e3f40|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 22375: *** free: at 'ltokenList.c:228' pnt '0x83b84a0|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 22376: *** free: at 'ltokenList.c:229' pnt '0x83e3f00|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22377: *** free: at 'ltoken.c:320' pnt '0x83e6480|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22378: *** free: at 'ltoken.c:320' pnt '0x83b6500|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22379: *** free: at 'abstract.c:5728' pnt '0x83e3f20|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 22380: *** alloc: at 'lslOpList.c:38' for 12 bytes, got '0x83e3f60|s1'
-991866207: 22381: *** alloc: at 'lslOpList.c:43' for 16 bytes, got '0x83e3f80|s1'
-991866207: 22382: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e62c0|s3'
-991866207: 22383: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6500|s1'
-991866207: 22384: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6540|s1'
-991866207: 22385: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6580|s1'
-991866207: 22386: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e3fa0|s1'
-991866207: 22387: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e3fc0|s1'
-991866207: 22388: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3fe0|s1'
-991866207: 22389: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8000|s1'
-991866207: 22390: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8020|s1'
-991866207: 22391: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e65c0|s1'
-991866207: 22392: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8040|s1'
-991866207: 22393: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8060|s1'
-991866207: 22394: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6600|s1'
-991866207: 22395: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8080|s1'
-991866207: 22396: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6640|s1'
-991866207: 22397: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83e80a0|s1'
-991866207: 22398: *** free: at 'abstract.c:5702' pnt '0x83e80a0|s2': size 8, alloced at 'abstract.c:1322'
-991866207: 22399: *** free: at 'ltokenList.c:228' pnt '0x83e8060|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 22400: checking heap
-991866207: 22400: *** free: at 'ltokenList.c:229' pnt '0x83e8040|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22401: *** free: at 'ltoken.c:320' pnt '0x83e6600|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22402: *** free: at 'ltoken.c:320' pnt '0x83e65c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22403: *** free: at 'abstract.c:5728' pnt '0x83e8080|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 22404: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83b6500|s5'
-991866207: 22405: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6480|s3'
-991866207: 22406: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6680|s1'
-991866207: 22407: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e66c0|s1'
-991866207: 22408: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6700|s1'
-991866207: 22409: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6740|s1'
-991866207: 22410: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e80c0|s1'
-991866207: 22411: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e80e0|s1'
-991866207: 22412: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8100|s1'
-991866207: 22413: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8120|s1'
-991866207: 22414: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8140|s1'
-991866207: 22415: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8160|s1'
-991866207: 22416: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6780|s1'
-991866207: 22417: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8180|s1'
-991866207: 22418: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e80a0|s3'
-991866207: 22419: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e67c0|s1'
-991866207: 22420: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6800|s1'
-991866207: 22421: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8040|s3'
-991866207: 22422: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8060|s3'
-991866207: 22423: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e65c0|s3'
-991866207: 22424: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8080|s3'
-991866207: 22425: *** free: at 'ltoken.c:320' pnt '0x83e65c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22426: *** free: at 'abstract.c:5688' pnt '0x83e8060|s4': size 20, alloced at 'abstract.c:5666'
-991866207: 22427: *** free: at 'abstract.c:5702' pnt '0x83e8080|s4': size 8, alloced at 'abstract.c:1311'
-991866207: 22428: *** free: at 'ltokenList.c:228' pnt '0x83e80a0|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 22429: *** free: at 'ltokenList.c:229' pnt '0x83e8180|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22430: *** free: at 'ltoken.c:320' pnt '0x83e6800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22431: *** free: at 'ltoken.c:320' pnt '0x83e6780|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22432: *** free: at 'abstract.c:5728' pnt '0x83e8040|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 22433: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6600|s3'
-991866207: 22434: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6840|s1'
-991866207: 22435: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6880|s1'
-991866207: 22436: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e68c0|s1'
-991866207: 22437: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6900|s1'
-991866207: 22438: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6940|s1'
-991866207: 22439: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6980|s1'
-991866207: 22440: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e69c0|s1'
-991866207: 22441: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6a00|s1'
-991866207: 22442: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e81a0|s1'
-991866207: 22443: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e81c0|s1'
-991866207: 22444: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e81e0|s1'
-991866207: 22445: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8200|s1'
-991866207: 22446: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8060|s5'
-991866207: 22447: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8080|s5'
-991866207: 22448: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e65c0|s5'
-991866207: 22449: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8180|s3'
-991866207: 22450: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e80a0|s5'
-991866207: 22451: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6780|s3'
-991866207: 22452: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6800|s3'
-991866207: 22453: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6a40|s1'
-991866207: 22454: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8040|s5'
-991866207: 22455: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8220|s1'
-991866207: 22456: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6a80|s1'
-991866207: 22457: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8240|s1'
-991866207: 22458: *** free: at 'ltoken.c:320' pnt '0x83e6a80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22459: *** free: at 'abstract.c:5688' pnt '0x83e8220|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22460: *** free: at 'abstract.c:5702' pnt '0x83e8240|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22461: *** free: at 'ltokenList.c:228' pnt '0x83e80a0|s6': size 16, alloced at 'ltokenList.c:43'
-991866207: 22462: *** free: at 'ltokenList.c:229' pnt '0x83e8180|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 22463: *** free: at 'ltoken.c:320' pnt '0x83e6a40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22464: *** free: at 'ltoken.c:320' pnt '0x83e65c0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 22465: *** free: at 'abstract.c:5728' pnt '0x83e8040|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 22466: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6ac0|s1'
-991866207: 22467: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6b00|s1'
-991866207: 22468: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6b40|s1'
-991866207: 22469: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6b80|s1'
-991866207: 22470: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6bc0|s1'
-991866207: 22471: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6c00|s1'
-991866207: 22472: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6c40|s1'
-991866207: 22473: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6c80|s1'
-991866207: 22474: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6cc0|s1'
-991866207: 22475: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8260|s1'
-991866207: 22476: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8280|s1'
-991866207: 22477: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e82a0|s1'
-991866207: 22478: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e82c0|s1'
-991866207: 22479: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8220|s3'
-991866207: 22480: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8240|s3'
-991866207: 22481: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6a80|s3'
-991866207: 22482: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8180|s5'
-991866207: 22483: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e80a0|s7'
-991866207: 22484: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e65c0|s7'
-991866207: 22485: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6a40|s3'
-991866207: 22486: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6d00|s1'
-991866207: 22487: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8040|s7'
-991866207: 22488: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e82e0|s1'
-991866207: 22489: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6d40|s1'
-991866207: 22490: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8300|s1'
-991866207: 22491: *** free: at 'ltoken.c:320' pnt '0x83e6d40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22492: *** free: at 'abstract.c:5688' pnt '0x83e82e0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22493: *** free: at 'abstract.c:5702' pnt '0x83e8300|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22494: *** free: at 'ltokenList.c:228' pnt '0x83e80a0|s8': size 16, alloced at 'ltokenList.c:43'
-991866207: 22495: *** free: at 'ltokenList.c:229' pnt '0x83e8180|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 22496: *** free: at 'ltoken.c:320' pnt '0x83e6d00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22497: *** free: at 'ltoken.c:320' pnt '0x83e6a80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22498: *** free: at 'abstract.c:5728' pnt '0x83e8040|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 22499: *** alloc: at 'lslOpList.c:56' for 32 bytes, got '0x83e8320|s1'
-991866207: 22500: checking heap
-991866207: 22500: *** free: at 'lslOpList.c:69' pnt '0x83e3f80|s2': size 16, alloced at 'lslOpList.c:43'
-991866207: 22501: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6d80|s1'
-991866207: 22502: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6dc0|s1'
-991866207: 22503: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6e00|s1'
-991866207: 22504: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6e40|s1'
-991866207: 22505: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6e80|s1'
-991866207: 22506: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6ec0|s1'
-991866207: 22507: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6f00|s1'
-991866207: 22508: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6f40|s1'
-991866207: 22509: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6f80|s1'
-991866207: 22510: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8340|s1'
-991866207: 22511: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8360|s1'
-991866207: 22512: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e82e0|s3'
-991866207: 22513: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8300|s3'
-991866207: 22514: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e80a0|s9'
-991866207: 22515: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8180|s7'
-991866207: 22516: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6d00|s3'
-991866207: 22517: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8380|s1'
-991866207: 22518: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8040|s9'
-991866207: 22519: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6a80|s5'
-991866207: 22520: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6d40|s3'
-991866207: 22521: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6fc0|s1'
-991866207: 22522: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f80|s3'
-991866207: 22523: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e83a0|s1'
-991866207: 22524: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea000|s1'
-991866207: 22525: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e83c0|s1'
-991866207: 22526: *** free: at 'ltoken.c:320' pnt '0x83ea000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22527: *** free: at 'abstract.c:5688' pnt '0x83e83a0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22528: *** free: at 'abstract.c:5702' pnt '0x83e83c0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22529: *** free: at 'ltokenList.c:228' pnt '0x83e8040|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 22530: *** free: at 'ltokenList.c:229' pnt '0x83e8380|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22531: *** free: at 'ltoken.c:320' pnt '0x83e6fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22532: *** free: at 'ltoken.c:320' pnt '0x83e6d00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22533: *** free: at 'abstract.c:5728' pnt '0x83e3f80|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 22534: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea040|s1'
-991866207: 22535: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea080|s1'
-991866207: 22536: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea0c0|s1'
-991866207: 22537: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea100|s1'
-991866207: 22538: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea140|s1'
-991866207: 22539: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea180|s1'
-991866207: 22540: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea1c0|s1'
-991866207: 22541: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea200|s1'
-991866207: 22542: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea240|s1'
-991866207: 22543: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e83e0|s1'
-991866207: 22544: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8400|s1'
-991866207: 22545: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8420|s1'
-991866207: 22546: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8440|s1'
-991866207: 22547: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e83a0|s3'
-991866207: 22548: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e83c0|s3'
-991866207: 22549: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea000|s3'
-991866207: 22550: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8380|s3'
-991866207: 22551: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8040|s11'
-991866207: 22552: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6d00|s5'
-991866207: 22553: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83e6fc0|s3'
-991866207: 22554: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea280|s1'
-991866207: 22555: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f80|s5'
-991866207: 22556: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8460|s1'
-991866207: 22557: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea2c0|s1'
-991866207: 22558: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8480|s1'
-991866207: 22559: *** free: at 'ltoken.c:320' pnt '0x83ea2c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22560: *** free: at 'abstract.c:5688' pnt '0x83e8460|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22561: *** free: at 'abstract.c:5702' pnt '0x83e8480|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22562: *** free: at 'ltokenList.c:228' pnt '0x83e8040|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 22563: *** free: at 'ltokenList.c:229' pnt '0x83e8380|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 22564: *** free: at 'ltoken.c:320' pnt '0x83ea280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22565: *** free: at 'ltoken.c:320' pnt '0x83ea000|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22566: *** free: at 'abstract.c:5728' pnt '0x83e3f80|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 22567: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea300|s1'
-991866207: 22568: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea340|s1'
-991866207: 22569: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea380|s1'
-991866207: 22570: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea3c0|s1'
-991866207: 22571: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea400|s1'
-991866207: 22572: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea440|s1'
-991866207: 22573: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea480|s1'
-991866207: 22574: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea4c0|s1'
-991866207: 22575: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea500|s1'
-991866207: 22576: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e84a0|s1'
-991866207: 22577: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e84c0|s1'
-991866207: 22578: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e84e0|s1'
-991866207: 22579: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8500|s1'
-991866207: 22580: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8460|s3'
-991866207: 22581: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8480|s3'
-991866207: 22582: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea2c0|s3'
-991866207: 22583: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8380|s5'
-991866207: 22584: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8040|s13'
-991866207: 22585: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea000|s5'
-991866207: 22586: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea280|s3'
-991866207: 22587: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea540|s1'
-991866207: 22588: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f80|s7'
-991866207: 22589: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8520|s1'
-991866207: 22590: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea580|s1'
-991866207: 22591: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8540|s1'
-991866207: 22592: *** free: at 'ltoken.c:320' pnt '0x83ea580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22593: *** free: at 'abstract.c:5688' pnt '0x83e8520|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22594: *** free: at 'abstract.c:5702' pnt '0x83e8540|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22595: *** free: at 'ltokenList.c:228' pnt '0x83e8040|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 22596: *** free: at 'ltokenList.c:229' pnt '0x83e8380|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 22597: *** free: at 'ltoken.c:320' pnt '0x83ea540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22598: *** free: at 'ltoken.c:320' pnt '0x83ea2c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22599: *** free: at 'abstract.c:5728' pnt '0x83e3f80|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 22600: checking heap
-991866207: 22600: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea5c0|s1'
-991866207: 22601: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea600|s1'
-991866207: 22602: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea640|s1'
-991866207: 22603: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea680|s1'
-991866207: 22604: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea6c0|s1'
-991866207: 22605: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea700|s1'
-991866207: 22606: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea740|s1'
-991866207: 22607: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea780|s1'
-991866207: 22608: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea7c0|s1'
-991866207: 22609: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8560|s1'
-991866207: 22610: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8580|s1'
-991866207: 22611: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e85a0|s1'
-991866207: 22612: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e85c0|s1'
-991866207: 22613: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8520|s3'
-991866207: 22614: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8540|s3'
-991866207: 22615: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea580|s3'
-991866207: 22616: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8380|s7'
-991866207: 22617: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8040|s15'
-991866207: 22618: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea2c0|s5'
-991866207: 22619: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea540|s3'
-991866207: 22620: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea800|s1'
-991866207: 22621: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f80|s9'
-991866207: 22622: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e85e0|s1'
-991866207: 22623: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea840|s1'
-991866207: 22624: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8600|s1'
-991866207: 22625: *** free: at 'ltoken.c:320' pnt '0x83ea840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22626: *** free: at 'abstract.c:5688' pnt '0x83e85e0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22627: *** free: at 'abstract.c:5702' pnt '0x83e8600|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22628: *** free: at 'ltokenList.c:228' pnt '0x83e8040|s16': size 16, alloced at 'ltokenList.c:43'
-991866207: 22629: *** free: at 'ltokenList.c:229' pnt '0x83e8380|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 22630: *** free: at 'ltoken.c:320' pnt '0x83ea800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22631: *** free: at 'ltoken.c:320' pnt '0x83ea580|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22632: *** free: at 'abstract.c:5728' pnt '0x83e3f80|s10': size 16, alloced at 'abstract.c:1367'
-991866207: 22633: *** alloc: at 'lslOpList.c:56' for 48 bytes, got '0x83ea880|s1'
-991866207: 22634: *** free: at 'lslOpList.c:69' pnt '0x83e8320|s2': size 32, alloced at 'lslOpList.c:56'
-991866207: 22635: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea8c0|s1'
-991866207: 22636: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea900|s1'
-991866207: 22637: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea940|s1'
-991866207: 22638: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea980|s1'
-991866207: 22639: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea9c0|s1'
-991866207: 22640: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaa00|s1'
-991866207: 22641: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaa40|s1'
-991866207: 22642: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaa80|s1'
-991866207: 22643: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaac0|s1'
-991866207: 22644: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8620|s1'
-991866207: 22645: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8640|s1'
-991866207: 22646: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e85e0|s3'
-991866207: 22647: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8600|s3'
-991866207: 22648: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8040|s17'
-991866207: 22649: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8380|s9'
-991866207: 22650: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea800|s3'
-991866207: 22651: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8660|s1'
-991866207: 22652: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3f80|s11'
-991866207: 22653: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea580|s5'
-991866207: 22654: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea840|s3'
-991866207: 22655: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eab00|s1'
-991866207: 22656: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8320|s3'
-991866207: 22657: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8680|s1'
-991866207: 22658: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eab40|s1'
-991866207: 22659: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e86a0|s1'
-991866207: 22660: *** free: at 'ltoken.c:320' pnt '0x83eab40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22661: *** free: at 'abstract.c:5688' pnt '0x83e8680|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22662: *** free: at 'abstract.c:5702' pnt '0x83e86a0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22663: *** free: at 'ltokenList.c:228' pnt '0x83e3f80|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 22664: *** free: at 'ltokenList.c:229' pnt '0x83e8660|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22665: *** free: at 'ltoken.c:320' pnt '0x83eab00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22666: *** free: at 'ltoken.c:320' pnt '0x83ea800|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22667: *** free: at 'abstract.c:5728' pnt '0x83e8320|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 22668: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eab80|s1'
-991866207: 22669: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eabc0|s1'
-991866207: 22670: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eac00|s1'
-991866207: 22671: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eac40|s1'
-991866207: 22672: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eac80|s1'
-991866207: 22673: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eacc0|s1'
-991866207: 22674: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ead00|s1'
-991866207: 22675: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ead40|s1'
-991866207: 22676: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ead80|s1'
-991866207: 22677: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e86c0|s1'
-991866207: 22678: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e86e0|s1'
-991866207: 22679: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8700|s1'
-991866207: 22680: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8720|s1'
-991866207: 22681: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8680|s3'
-991866207: 22682: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e86a0|s3'
-991866207: 22683: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eab40|s3'
-991866207: 22684: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8660|s3'
-991866207: 22685: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3f80|s13'
-991866207: 22686: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea800|s5'
-991866207: 22687: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eab00|s3'
-991866207: 22688: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eadc0|s1'
-991866207: 22689: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8320|s5'
-991866207: 22690: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8740|s1'
-991866207: 22691: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eae00|s1'
-991866207: 22692: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8760|s1'
-991866207: 22693: *** free: at 'ltoken.c:320' pnt '0x83eae00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22694: *** free: at 'abstract.c:5688' pnt '0x83e8740|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22695: *** free: at 'abstract.c:5702' pnt '0x83e8760|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22696: *** free: at 'ltokenList.c:228' pnt '0x83e3f80|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 22697: *** free: at 'ltokenList.c:229' pnt '0x83e8660|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 22698: *** free: at 'ltoken.c:320' pnt '0x83eadc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22699: *** free: at 'ltoken.c:320' pnt '0x83eab40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22700: checking heap
-991866207: 22700: *** free: at 'abstract.c:5728' pnt '0x83e8320|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 22701: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eae40|s1'
-991866207: 22702: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eae80|s1'
-991866207: 22703: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaec0|s1'
-991866207: 22704: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaf00|s1'
-991866207: 22705: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaf40|s1'
-991866207: 22706: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eaf80|s1'
-991866207: 22707: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eafc0|s1'
-991866207: 22708: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb000|s1'
-991866207: 22709: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb040|s1'
-991866207: 22710: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8780|s1'
-991866207: 22711: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e87a0|s1'
-991866207: 22712: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e87c0|s1'
-991866207: 22713: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e87e0|s1'
-991866207: 22714: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8740|s3'
-991866207: 22715: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8760|s3'
-991866207: 22716: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb080|s1'
-991866207: 22717: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8660|s5'
-991866207: 22718: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3f80|s15'
-991866207: 22719: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb0c0|s1'
-991866207: 22720: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb100|s1'
-991866207: 22721: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb140|s1'
-991866207: 22722: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8320|s7'
-991866207: 22723: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8800|s1'
-991866207: 22724: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb180|s1'
-991866207: 22725: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8820|s1'
-991866207: 22726: *** free: at 'ltoken.c:320' pnt '0x83eb180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22727: *** free: at 'abstract.c:5688' pnt '0x83e8800|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22728: *** free: at 'abstract.c:5702' pnt '0x83e8820|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22729: *** free: at 'ltokenList.c:228' pnt '0x83e3f80|s16': size 16, alloced at 'ltokenList.c:43'
-991866207: 22730: *** free: at 'ltokenList.c:229' pnt '0x83e8660|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 22731: *** free: at 'ltoken.c:320' pnt '0x83eb140|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22732: *** free: at 'ltoken.c:320' pnt '0x83eb080|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22733: *** free: at 'abstract.c:5728' pnt '0x83e8320|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 22734: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb1c0|s1'
-991866207: 22735: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb200|s1'
-991866207: 22736: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb240|s1'
-991866207: 22737: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb280|s1'
-991866207: 22738: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb2c0|s1'
-991866207: 22739: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb300|s1'
-991866207: 22740: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb340|s1'
-991866207: 22741: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb380|s1'
-991866207: 22742: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb3c0|s1'
-991866207: 22743: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8840|s1'
-991866207: 22744: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8860|s1'
-991866207: 22745: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8880|s1'
-991866207: 22746: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e88a0|s1'
-991866207: 22747: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8800|s3'
-991866207: 22748: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8820|s3'
-991866207: 22749: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb180|s3'
-991866207: 22750: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8660|s7'
-991866207: 22751: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3f80|s17'
-991866207: 22752: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb080|s3'
-991866207: 22753: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb140|s3'
-991866207: 22754: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb400|s1'
-991866207: 22755: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8320|s9'
-991866207: 22756: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e88c0|s1'
-991866207: 22757: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb440|s1'
-991866207: 22758: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e88e0|s1'
-991866207: 22759: *** free: at 'ltoken.c:320' pnt '0x83eb440|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22760: *** free: at 'abstract.c:5688' pnt '0x83e88c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22761: *** free: at 'abstract.c:5702' pnt '0x83e88e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22762: *** free: at 'ltokenList.c:228' pnt '0x83e3f80|s18': size 16, alloced at 'ltokenList.c:43'
-991866207: 22763: *** free: at 'ltokenList.c:229' pnt '0x83e8660|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 22764: *** free: at 'ltoken.c:320' pnt '0x83eb400|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22765: *** free: at 'ltoken.c:320' pnt '0x83eb180|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22766: *** free: at 'abstract.c:5728' pnt '0x83e8320|s10': size 16, alloced at 'abstract.c:1367'
-991866207: 22767: *** alloc: at 'lslOpList.c:56' for 64 bytes, got '0x83eb480|s1'
-991866207: 22768: *** free: at 'lslOpList.c:69' pnt '0x83ea880|s2': size 48, alloced at 'lslOpList.c:56'
-991866207: 22769: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb4c0|s1'
-991866207: 22770: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb500|s1'
-991866207: 22771: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb540|s1'
-991866207: 22772: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb580|s1'
-991866207: 22773: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb5c0|s1'
-991866207: 22774: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb600|s1'
-991866207: 22775: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb640|s1'
-991866207: 22776: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb680|s1'
-991866207: 22777: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb6c0|s1'
-991866207: 22778: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8900|s1'
-991866207: 22779: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8920|s1'
-991866207: 22780: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e88c0|s3'
-991866207: 22781: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e88e0|s3'
-991866207: 22782: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f80|s19'
-991866207: 22783: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8660|s9'
-991866207: 22784: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb400|s3'
-991866207: 22785: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8940|s1'
-991866207: 22786: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8320|s11'
-991866207: 22787: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb180|s5'
-991866207: 22788: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ea880|s3'
-991866207: 22789: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb440|s3'
-991866207: 22790: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8960|s1'
-991866207: 22791: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8980|s1'
-991866207: 22792: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb700|s1'
-991866207: 22793: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e89a0|s1'
-991866207: 22794: *** free: at 'ltoken.c:320' pnt '0x83eb700|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22795: *** free: at 'abstract.c:5688' pnt '0x83e8980|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22796: *** free: at 'abstract.c:5702' pnt '0x83e89a0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22797: *** free: at 'ltokenList.c:228' pnt '0x83e8320|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 22798: *** free: at 'ltokenList.c:229' pnt '0x83e8940|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22799: *** free: at 'ltoken.c:320' pnt '0x83eb440|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22800: checking heap
-991866207: 22800: *** free: at 'ltoken.c:320' pnt '0x83eb400|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22801: *** free: at 'abstract.c:5728' pnt '0x83e8960|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 22802: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb740|s1'
-991866207: 22803: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb780|s1'
-991866207: 22804: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb7c0|s1'
-991866207: 22805: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb800|s1'
-991866207: 22806: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb840|s1'
-991866207: 22807: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb880|s1'
-991866207: 22808: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb8c0|s1'
-991866207: 22809: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb900|s1'
-991866207: 22810: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb940|s1'
-991866207: 22811: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e89c0|s1'
-991866207: 22812: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e89e0|s1'
-991866207: 22813: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8a00|s1'
-991866207: 22814: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8a20|s1'
-991866207: 22815: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8980|s3'
-991866207: 22816: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e89a0|s3'
-991866207: 22817: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb700|s3'
-991866207: 22818: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8940|s3'
-991866207: 22819: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8320|s13'
-991866207: 22820: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb400|s5'
-991866207: 22821: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb440|s5'
-991866207: 22822: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb980|s1'
-991866207: 22823: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8960|s3'
-991866207: 22824: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8a40|s1'
-991866207: 22825: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb9c0|s1'
-991866207: 22826: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8a60|s1'
-991866207: 22827: *** free: at 'ltoken.c:320' pnt '0x83eb9c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22828: *** free: at 'abstract.c:5688' pnt '0x83e8a40|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22829: *** free: at 'abstract.c:5702' pnt '0x83e8a60|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22830: *** free: at 'ltokenList.c:228' pnt '0x83e8320|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 22831: *** free: at 'ltokenList.c:229' pnt '0x83e8940|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 22832: *** free: at 'ltoken.c:320' pnt '0x83eb980|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22833: *** free: at 'ltoken.c:320' pnt '0x83eb700|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22834: *** free: at 'abstract.c:5728' pnt '0x83e8960|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 22835: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eba00|s1'
-991866207: 22836: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eba40|s1'
-991866207: 22837: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eba80|s1'
-991866207: 22838: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebac0|s1'
-991866207: 22839: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebb00|s1'
-991866207: 22840: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebb40|s1'
-991866207: 22841: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebb80|s1'
-991866207: 22842: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebbc0|s1'
-991866207: 22843: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebc00|s1'
-991866207: 22844: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8a80|s1'
-991866207: 22845: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8aa0|s1'
-991866207: 22846: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8ac0|s1'
-991866207: 22847: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8ae0|s1'
-991866207: 22848: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8a40|s3'
-991866207: 22849: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8a60|s3'
-991866207: 22850: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb9c0|s3'
-991866207: 22851: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8940|s5'
-991866207: 22852: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8320|s15'
-991866207: 22853: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb700|s5'
-991866207: 22854: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb980|s3'
-991866207: 22855: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebc40|s1'
-991866207: 22856: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8960|s5'
-991866207: 22857: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8b00|s1'
-991866207: 22858: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebc80|s1'
-991866207: 22859: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8b20|s1'
-991866207: 22860: *** free: at 'ltoken.c:320' pnt '0x83ebc80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22861: *** free: at 'abstract.c:5688' pnt '0x83e8b00|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22862: *** free: at 'abstract.c:5702' pnt '0x83e8b20|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22863: *** free: at 'ltokenList.c:228' pnt '0x83e8320|s16': size 16, alloced at 'ltokenList.c:43'
-991866207: 22864: *** free: at 'ltokenList.c:229' pnt '0x83e8940|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 22865: *** free: at 'ltoken.c:320' pnt '0x83ebc40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22866: *** free: at 'ltoken.c:320' pnt '0x83eb9c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22867: *** free: at 'abstract.c:5728' pnt '0x83e8960|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 22868: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebcc0|s1'
-991866207: 22869: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebd00|s1'
-991866207: 22870: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebd40|s1'
-991866207: 22871: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebd80|s1'
-991866207: 22872: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebdc0|s1'
-991866207: 22873: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebe00|s1'
-991866207: 22874: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebe40|s1'
-991866207: 22875: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebe80|s1'
-991866207: 22876: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebec0|s1'
-991866207: 22877: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8b40|s1'
-991866207: 22878: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8b60|s1'
-991866207: 22879: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8b80|s1'
-991866207: 22880: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8ba0|s1'
-991866207: 22881: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8b00|s3'
-991866207: 22882: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8b20|s3'
-991866207: 22883: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebc80|s3'
-991866207: 22884: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8940|s7'
-991866207: 22885: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8320|s17'
-991866207: 22886: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb9c0|s5'
-991866207: 22887: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebc40|s3'
-991866207: 22888: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebf00|s1'
-991866207: 22889: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8960|s7'
-991866207: 22890: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8bc0|s1'
-991866207: 22891: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebf40|s1'
-991866207: 22892: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8be0|s1'
-991866207: 22893: *** free: at 'ltoken.c:320' pnt '0x83ebf40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22894: *** free: at 'abstract.c:5688' pnt '0x83e8bc0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22895: *** free: at 'abstract.c:5702' pnt '0x83e8be0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22896: *** free: at 'ltokenList.c:228' pnt '0x83e8320|s18': size 16, alloced at 'ltokenList.c:43'
-991866207: 22897: *** free: at 'ltokenList.c:229' pnt '0x83e8940|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 22898: *** free: at 'ltoken.c:320' pnt '0x83ebf00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22899: *** free: at 'ltoken.c:320' pnt '0x83ebc80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22900: checking heap
-991866207: 22900: *** free: at 'abstract.c:5728' pnt '0x83e8960|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 22901: *** alloc: at 'lslOpList.c:56' for 80 bytes, got '0x83a3680|s5'
-991866207: 22902: *** free: at 'lslOpList.c:69' pnt '0x83eb480|s2': size 64, alloced at 'lslOpList.c:56'
-991866207: 22903: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebf80|s1'
-991866207: 22904: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebfc0|s1'
-991866207: 22905: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eab40|s5'
-991866207: 22906: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eadc0|s3'
-991866207: 22907: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eae00|s3'
-991866207: 22908: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed000|s1'
-991866207: 22909: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed040|s1'
-991866207: 22910: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed080|s1'
-991866207: 22911: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed0c0|s1'
-991866207: 22912: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8c00|s1'
-991866207: 22913: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8c20|s1'
-991866207: 22914: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8bc0|s3'
-991866207: 22915: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8be0|s3'
-991866207: 22916: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8320|s19'
-991866207: 22917: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8940|s9'
-991866207: 22918: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed100|s1'
-991866207: 22919: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8c40|s1'
-991866207: 22920: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8960|s9'
-991866207: 22921: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed140|s1'
-991866207: 22922: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed180|s1'
-991866207: 22923: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed1c0|s1'
-991866207: 22924: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8c60|s1'
-991866207: 22925: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8c80|s1'
-991866207: 22926: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed200|s1'
-991866207: 22927: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8ca0|s1'
-991866207: 22928: *** free: at 'ltoken.c:320' pnt '0x83ed200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22929: *** free: at 'abstract.c:5688' pnt '0x83e8c80|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22930: *** free: at 'abstract.c:5702' pnt '0x83e8ca0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22931: *** free: at 'ltokenList.c:228' pnt '0x83e8960|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 22932: *** free: at 'ltokenList.c:229' pnt '0x83e8c40|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22933: *** free: at 'ltoken.c:320' pnt '0x83ed1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22934: *** free: at 'ltoken.c:320' pnt '0x83ed100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22935: *** free: at 'abstract.c:5728' pnt '0x83e8c60|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 22936: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed240|s1'
-991866207: 22937: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed280|s1'
-991866207: 22938: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed2c0|s1'
-991866207: 22939: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed300|s1'
-991866207: 22940: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed340|s1'
-991866207: 22941: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed380|s1'
-991866207: 22942: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed3c0|s1'
-991866207: 22943: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed400|s1'
-991866207: 22944: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed440|s1'
-991866207: 22945: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed480|s1'
-991866207: 22946: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed4c0|s1'
-991866207: 22947: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed500|s1'
-991866207: 22948: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed200|s3'
-991866207: 22949: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed540|s1'
-991866207: 22950: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8ca0|s3'
-991866207: 22951: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8960|s11'
-991866207: 22952: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8c40|s3'
-991866207: 22953: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8c80|s3'
-991866207: 22954: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8cc0|s1'
-991866207: 22955: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8c60|s3'
-991866207: 22956: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed100|s3'
-991866207: 22957: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8ce0|s1'
-991866207: 22958: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8d00|s1'
-991866207: 22959: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed1c0|s3'
-991866207: 22960: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed580|s1'
-991866207: 22961: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed5c0|s1'
-991866207: 22962: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed600|s1'
-991866207: 22963: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8d20|s1'
-991866207: 22964: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8d40|s1'
-991866207: 22965: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed640|s1'
-991866207: 22966: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8d60|s1'
-991866207: 22967: *** free: at 'ltoken.c:320' pnt '0x83ed640|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22968: *** free: at 'abstract.c:5688' pnt '0x83e8d40|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 22969: *** free: at 'abstract.c:5702' pnt '0x83e8d60|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 22970: *** free: at 'ltokenList.c:228' pnt '0x83e8d00|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 22971: *** free: at 'ltokenList.c:229' pnt '0x83e8ce0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 22972: *** free: at 'ltoken.c:320' pnt '0x83ed600|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 22973: *** free: at 'ltoken.c:320' pnt '0x83ed100|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 22974: *** free: at 'abstract.c:5728' pnt '0x83e8d20|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 22975: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed680|s1'
-991866207: 22976: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed6c0|s1'
-991866207: 22977: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed700|s1'
-991866207: 22978: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed740|s1'
-991866207: 22979: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed780|s1'
-991866207: 22980: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed7c0|s1'
-991866207: 22981: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed800|s1'
-991866207: 22982: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed840|s1'
-991866207: 22983: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed880|s1'
-991866207: 22984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed8c0|s1'
-991866207: 22985: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed900|s1'
-991866207: 22986: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed940|s1'
-991866207: 22987: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed640|s3'
-991866207: 22988: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed980|s1'
-991866207: 22989: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8d60|s3'
-991866207: 22990: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8d00|s3'
-991866207: 22991: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8ce0|s3'
-991866207: 22992: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8d40|s3'
-991866207: 22993: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8d80|s1'
-991866207: 22994: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8d20|s3'
-991866207: 22995: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed100|s5'
-991866207: 22996: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8da0|s1'
-991866207: 22997: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8dc0|s1'
-991866207: 22998: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed600|s3'
-991866207: 22999: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed9c0|s1'
-991866207: 23000: checking heap
-991866207: 23000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eda00|s1'
-991866207: 23001: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eda40|s1'
-991866207: 23002: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8de0|s1'
-991866207: 23003: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8e00|s1'
-991866207: 23004: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eda80|s1'
-991866207: 23005: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8e20|s1'
-991866207: 23006: *** free: at 'ltoken.c:320' pnt '0x83eda80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23007: *** free: at 'abstract.c:5688' pnt '0x83e8e00|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23008: *** free: at 'abstract.c:5702' pnt '0x83e8e20|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23009: *** free: at 'ltokenList.c:228' pnt '0x83e8dc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 23010: *** free: at 'ltokenList.c:229' pnt '0x83e8da0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23011: *** free: at 'ltoken.c:320' pnt '0x83eda40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23012: *** free: at 'ltoken.c:320' pnt '0x83ed100|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 23013: *** free: at 'abstract.c:5728' pnt '0x83e8de0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23014: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edac0|s1'
-991866207: 23015: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edb00|s1'
-991866207: 23016: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edb40|s1'
-991866207: 23017: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edb80|s1'
-991866207: 23018: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edbc0|s1'
-991866207: 23019: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edc00|s1'
-991866207: 23020: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edc40|s1'
-991866207: 23021: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edc80|s1'
-991866207: 23022: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edcc0|s1'
-991866207: 23023: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edd00|s1'
-991866207: 23024: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edd40|s1'
-991866207: 23025: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edd80|s1'
-991866207: 23026: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eda80|s3'
-991866207: 23027: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eddc0|s1'
-991866207: 23028: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8e20|s3'
-991866207: 23029: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8dc0|s3'
-991866207: 23030: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8da0|s3'
-991866207: 23031: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8e00|s3'
-991866207: 23032: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8e40|s1'
-991866207: 23033: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8de0|s3'
-991866207: 23034: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed100|s7'
-991866207: 23035: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8e60|s1'
-991866207: 23036: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8e80|s1'
-991866207: 23037: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eda40|s3'
-991866207: 23038: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ede00|s1'
-991866207: 23039: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ede40|s1'
-991866207: 23040: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ede80|s1'
-991866207: 23041: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8ea0|s1'
-991866207: 23042: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8ec0|s1'
-991866207: 23043: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edec0|s1'
-991866207: 23044: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8ee0|s1'
-991866207: 23045: *** free: at 'ltoken.c:320' pnt '0x83edec0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23046: *** free: at 'abstract.c:5688' pnt '0x83e8ec0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23047: *** free: at 'abstract.c:5702' pnt '0x83e8ee0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23048: *** free: at 'ltokenList.c:228' pnt '0x83e8e80|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 23049: *** free: at 'ltokenList.c:229' pnt '0x83e8e60|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23050: *** free: at 'ltoken.c:320' pnt '0x83ede80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23051: *** free: at 'ltoken.c:320' pnt '0x83ed100|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 23052: *** free: at 'abstract.c:5728' pnt '0x83e8ea0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23053: *** alloc: at 'lslOpList.c:56' for 96 bytes, got '0x83a3600|s5'
-991866207: 23054: *** free: at 'lslOpList.c:69' pnt '0x83a3680|s6': size 80, alloced at 'lslOpList.c:56'
-991866207: 23055: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edf00|s1'
-991866207: 23056: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edf40|s1'
-991866207: 23057: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edf80|s1'
-991866207: 23058: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edfc0|s1'
-991866207: 23059: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eb480|s3'
-991866207: 23060: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebc80|s5'
-991866207: 23061: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebf00|s3'
-991866207: 23062: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ebf40|s3'
-991866207: 23063: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee000|s1'
-991866207: 23064: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee040|s1'
-991866207: 23065: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee080|s1'
-991866207: 23066: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee0c0|s1'
-991866207: 23067: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee100|s1'
-991866207: 23068: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee140|s1'
-991866207: 23069: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8e60|s3'
-991866207: 23070: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8e80|s3'
-991866207: 23071: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8ee0|s3'
-991866207: 23072: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8ea0|s3'
-991866207: 23073: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8ec0|s3'
-991866207: 23074: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8f00|s1'
-991866207: 23075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee180|s1'
-991866207: 23076: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8f20|s1'
-991866207: 23077: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e8f40|s1'
-991866207: 23078: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee1c0|s1'
-991866207: 23079: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee200|s1'
-991866207: 23080: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee240|s1'
-991866207: 23081: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee280|s1'
-991866207: 23082: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8f60|s1'
-991866207: 23083: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83e8f80|s1'
-991866207: 23084: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee2c0|s1'
-991866207: 23085: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8fa0|s1'
-991866207: 23086: *** free: at 'ltoken.c:320' pnt '0x83ee2c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23087: *** free: at 'abstract.c:5688' pnt '0x83e8f80|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23088: *** free: at 'abstract.c:5702' pnt '0x83e8fa0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23089: *** free: at 'ltokenList.c:228' pnt '0x83e8f40|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 23090: *** free: at 'ltokenList.c:229' pnt '0x83e8f20|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23091: *** free: at 'ltoken.c:320' pnt '0x83ee280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23092: *** free: at 'ltoken.c:320' pnt '0x83ee180|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23093: *** free: at 'abstract.c:5728' pnt '0x83e8f60|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23094: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee300|s1'
-991866207: 23095: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee340|s1'
-991866207: 23096: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee380|s1'
-991866207: 23097: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee3c0|s1'
-991866207: 23098: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee400|s1'
-991866207: 23099: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee440|s1'
-991866207: 23100: checking heap
-991866207: 23100: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee480|s1'
-991866207: 23101: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee4c0|s1'
-991866207: 23102: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee500|s1'
-991866207: 23103: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee540|s1'
-991866207: 23104: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee580|s1'
-991866207: 23105: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee5c0|s1'
-991866207: 23106: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee2c0|s3'
-991866207: 23107: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee600|s1'
-991866207: 23108: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e8fa0|s3'
-991866207: 23109: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e8f40|s3'
-991866207: 23110: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8f20|s3'
-991866207: 23111: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e8f80|s3'
-991866207: 23112: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e8fc0|s1'
-991866207: 23113: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83e8f60|s3'
-991866207: 23114: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee180|s3'
-991866207: 23115: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83e8fe0|s1'
-991866207: 23116: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83e3f20|s3'
-991866207: 23117: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee280|s3'
-991866207: 23118: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee640|s1'
-991866207: 23119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee680|s1'
-991866207: 23120: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee6c0|s1'
-991866207: 23121: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83e3f00|s3'
-991866207: 23122: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83b84a0|s5'
-991866207: 23123: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee700|s1'
-991866207: 23124: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e3f40|s3'
-991866207: 23125: *** free: at 'ltoken.c:320' pnt '0x83ee700|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23126: *** free: at 'abstract.c:5688' pnt '0x83b84a0|s6': size 20, alloced at 'abstract.c:5666'
-991866207: 23127: *** free: at 'abstract.c:5702' pnt '0x83e3f40|s4': size 8, alloced at 'abstract.c:1311'
-991866207: 23128: *** free: at 'ltokenList.c:228' pnt '0x83e3f20|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 23129: *** free: at 'ltokenList.c:229' pnt '0x83e8fe0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23130: *** free: at 'ltoken.c:320' pnt '0x83ee6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23131: *** free: at 'ltoken.c:320' pnt '0x83ee180|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23132: *** free: at 'abstract.c:5728' pnt '0x83e3f00|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23133: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee740|s1'
-991866207: 23134: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee780|s1'
-991866207: 23135: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee7c0|s1'
-991866207: 23136: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee800|s1'
-991866207: 23137: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee840|s1'
-991866207: 23138: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee880|s1'
-991866207: 23139: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee8c0|s1'
-991866207: 23140: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee900|s1'
-991866207: 23141: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee940|s1'
-991866207: 23142: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee980|s1'
-991866207: 23143: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee9c0|s1'
-991866207: 23144: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eea00|s1'
-991866207: 23145: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee700|s3'
-991866207: 23146: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eea40|s1'
-991866207: 23147: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83e3f40|s5'
-991866207: 23148: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83e3f20|s5'
-991866207: 23149: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83e8fe0|s3'
-991866207: 23150: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83b84a0|s7'
-991866207: 23151: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0000|s1'
-991866207: 23152: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0020|s1'
-991866207: 23153: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee180|s5'
-991866207: 23154: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0040|s1'
-991866207: 23155: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0060|s1'
-991866207: 23156: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee6c0|s3'
-991866207: 23157: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eea80|s1'
-991866207: 23158: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeac0|s1'
-991866207: 23159: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeb00|s1'
-991866207: 23160: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0080|s1'
-991866207: 23161: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f00a0|s1'
-991866207: 23162: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeb40|s1'
-991866207: 23163: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f00c0|s1'
-991866207: 23164: *** free: at 'ltoken.c:320' pnt '0x83eeb40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23165: *** free: at 'abstract.c:5688' pnt '0x83f00a0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23166: *** free: at 'abstract.c:5702' pnt '0x83f00c0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23167: *** free: at 'ltokenList.c:228' pnt '0x83f0060|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 23168: *** free: at 'ltokenList.c:229' pnt '0x83f0040|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23169: *** free: at 'ltoken.c:320' pnt '0x83eeb00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23170: *** free: at 'ltoken.c:320' pnt '0x83ee180|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 23171: *** free: at 'abstract.c:5728' pnt '0x83f0080|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23172: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeb80|s1'
-991866207: 23173: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eebc0|s1'
-991866207: 23174: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eec00|s1'
-991866207: 23175: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eec40|s1'
-991866207: 23176: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eec80|s1'
-991866207: 23177: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eecc0|s1'
-991866207: 23178: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eed00|s1'
-991866207: 23179: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eed40|s1'
-991866207: 23180: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eed80|s1'
-991866207: 23181: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f00e0|s1'
-991866207: 23182: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0100|s1'
-991866207: 23183: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0120|s1'
-991866207: 23184: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0140|s1'
-991866207: 23185: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f00a0|s3'
-991866207: 23186: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f00c0|s3'
-991866207: 23187: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeb40|s3'
-991866207: 23188: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0040|s3'
-991866207: 23189: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0060|s3'
-991866207: 23190: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ee180|s7'
-991866207: 23191: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeb00|s3'
-991866207: 23192: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eedc0|s1'
-991866207: 23193: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0080|s3'
-991866207: 23194: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0160|s1'
-991866207: 23195: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eee00|s1'
-991866207: 23196: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0180|s1'
-991866207: 23197: *** free: at 'ltoken.c:320' pnt '0x83eee00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23198: *** free: at 'abstract.c:5688' pnt '0x83f0160|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23199: *** free: at 'abstract.c:5702' pnt '0x83f0180|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23200: checking heap
-991866207: 23200: *** free: at 'ltokenList.c:228' pnt '0x83f0060|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 23201: *** free: at 'ltokenList.c:229' pnt '0x83f0040|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23202: *** free: at 'ltoken.c:320' pnt '0x83eedc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23203: *** free: at 'ltoken.c:320' pnt '0x83eeb40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23204: *** free: at 'abstract.c:5728' pnt '0x83f0080|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23205: *** alloc: at 'lslOpList.c:56' for 112 bytes, got '0x83a3680|s7'
-991866207: 23206: *** free: at 'lslOpList.c:69' pnt '0x83a3600|s6': size 96, alloced at 'lslOpList.c:56'
-991866207: 23207: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eee40|s1'
-991866207: 23208: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eee80|s1'
-991866207: 23209: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeec0|s1'
-991866207: 23210: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eef00|s1'
-991866207: 23211: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eef40|s1'
-991866207: 23212: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eef80|s1'
-991866207: 23213: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eefc0|s1'
-991866207: 23214: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ed100|s9'
-991866207: 23215: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83ede80|s3'
-991866207: 23216: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f01a0|s1'
-991866207: 23217: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f01c0|s1'
-991866207: 23218: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0160|s3'
-991866207: 23219: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0180|s3'
-991866207: 23220: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0060|s5'
-991866207: 23221: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0040|s5'
-991866207: 23222: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eedc0|s3'
-991866207: 23223: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f01e0|s1'
-991866207: 23224: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0080|s5'
-991866207: 23225: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eeb40|s5'
-991866207: 23226: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eee00|s3'
-991866207: 23227: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edec0|s3'
-991866207: 23228: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0200|s1'
-991866207: 23229: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0220|s1'
-991866207: 23230: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2000|s1'
-991866207: 23231: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0240|s1'
-991866207: 23232: *** free: at 'ltoken.c:320' pnt '0x83f2000|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23233: *** free: at 'abstract.c:5688' pnt '0x83f0220|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23234: *** free: at 'abstract.c:5702' pnt '0x83f0240|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23235: *** free: at 'ltokenList.c:228' pnt '0x83f0080|s6': size 16, alloced at 'ltokenList.c:43'
-991866207: 23236: *** free: at 'ltokenList.c:229' pnt '0x83f01e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23237: *** free: at 'ltoken.c:320' pnt '0x83edec0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23238: *** free: at 'ltoken.c:320' pnt '0x83eedc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23239: *** free: at 'abstract.c:5728' pnt '0x83f0200|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23240: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2040|s1'
-991866207: 23241: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2080|s1'
-991866207: 23242: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f20c0|s1'
-991866207: 23243: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2100|s1'
-991866207: 23244: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2140|s1'
-991866207: 23245: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2180|s1'
-991866207: 23246: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f21c0|s1'
-991866207: 23247: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2200|s1'
-991866207: 23248: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2240|s1'
-991866207: 23249: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0260|s1'
-991866207: 23250: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0280|s1'
-991866207: 23251: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f02a0|s1'
-991866207: 23252: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f02c0|s1'
-991866207: 23253: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0220|s3'
-991866207: 23254: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0240|s3'
-991866207: 23255: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2000|s3'
-991866207: 23256: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f01e0|s3'
-991866207: 23257: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0080|s7'
-991866207: 23258: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83eedc0|s5'
-991866207: 23259: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83edec0|s5'
-991866207: 23260: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2280|s1'
-991866207: 23261: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0200|s3'
-991866207: 23262: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f02e0|s1'
-991866207: 23263: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f22c0|s1'
-991866207: 23264: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0300|s1'
-991866207: 23265: *** free: at 'ltoken.c:320' pnt '0x83f22c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23266: *** free: at 'abstract.c:5688' pnt '0x83f02e0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23267: *** free: at 'abstract.c:5702' pnt '0x83f0300|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23268: *** free: at 'ltokenList.c:228' pnt '0x83f0080|s8': size 16, alloced at 'ltokenList.c:43'
-991866207: 23269: *** free: at 'ltokenList.c:229' pnt '0x83f01e0|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23270: *** free: at 'ltoken.c:320' pnt '0x83f2280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23271: *** free: at 'ltoken.c:320' pnt '0x83f2000|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23272: *** free: at 'abstract.c:5728' pnt '0x83f0200|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23273: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2300|s1'
-991866207: 23274: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2340|s1'
-991866207: 23275: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2380|s1'
-991866207: 23276: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f23c0|s1'
-991866207: 23277: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2400|s1'
-991866207: 23278: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2440|s1'
-991866207: 23279: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2480|s1'
-991866207: 23280: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f24c0|s1'
-991866207: 23281: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2500|s1'
-991866207: 23282: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0320|s1'
-991866207: 23283: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0340|s1'
-991866207: 23284: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0360|s1'
-991866207: 23285: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0380|s1'
-991866207: 23286: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f02e0|s3'
-991866207: 23287: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0300|s3'
-991866207: 23288: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f22c0|s3'
-991866207: 23289: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f01e0|s5'
-991866207: 23290: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0080|s9'
-991866207: 23291: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2000|s5'
-991866207: 23292: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2280|s3'
-991866207: 23293: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2540|s1'
-991866207: 23294: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0200|s5'
-991866207: 23295: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f03a0|s1'
-991866207: 23296: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2580|s1'
-991866207: 23297: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f03c0|s1'
-991866207: 23298: *** free: at 'ltoken.c:320' pnt '0x83f2580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23299: *** free: at 'abstract.c:5688' pnt '0x83f03a0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23300: checking heap
-991866207: 23300: *** free: at 'abstract.c:5702' pnt '0x83f03c0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23301: *** free: at 'ltokenList.c:228' pnt '0x83f0080|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 23302: *** free: at 'ltokenList.c:229' pnt '0x83f01e0|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 23303: *** free: at 'ltoken.c:320' pnt '0x83f2540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23304: *** free: at 'ltoken.c:320' pnt '0x83f22c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23305: *** free: at 'abstract.c:5728' pnt '0x83f0200|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23306: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f25c0|s1'
-991866207: 23307: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2600|s1'
-991866207: 23308: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2640|s1'
-991866207: 23309: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2680|s1'
-991866207: 23310: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f26c0|s1'
-991866207: 23311: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2700|s1'
-991866207: 23312: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2740|s1'
-991866207: 23313: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2780|s1'
-991866207: 23314: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f27c0|s1'
-991866207: 23315: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f03e0|s1'
-991866207: 23316: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0400|s1'
-991866207: 23317: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0420|s1'
-991866207: 23318: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0440|s1'
-991866207: 23319: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f03a0|s3'
-991866207: 23320: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f03c0|s3'
-991866207: 23321: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2580|s3'
-991866207: 23322: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f01e0|s7'
-991866207: 23323: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0080|s11'
-991866207: 23324: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f22c0|s5'
-991866207: 23325: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2540|s3'
-991866207: 23326: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2800|s1'
-991866207: 23327: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0200|s7'
-991866207: 23328: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0460|s1'
-991866207: 23329: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2840|s1'
-991866207: 23330: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0480|s1'
-991866207: 23331: *** free: at 'ltoken.c:320' pnt '0x83f2840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23332: *** free: at 'abstract.c:5688' pnt '0x83f0460|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23333: *** free: at 'abstract.c:5702' pnt '0x83f0480|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23334: *** free: at 'ltokenList.c:228' pnt '0x83f0080|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 23335: *** free: at 'ltokenList.c:229' pnt '0x83f01e0|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 23336: *** free: at 'ltoken.c:320' pnt '0x83f2800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23337: *** free: at 'ltoken.c:320' pnt '0x83f2580|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23338: *** free: at 'abstract.c:5728' pnt '0x83f0200|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 23339: *** alloc: at 'lslOpList.c:56' for 128 bytes, got '0x83a3600|s7'
-991866207: 23340: *** free: at 'lslOpList.c:69' pnt '0x83a3680|s8': size 112, alloced at 'lslOpList.c:56'
-991866207: 23341: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2880|s1'
-991866207: 23342: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f28c0|s1'
-991866207: 23343: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2900|s1'
-991866207: 23344: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2940|s1'
-991866207: 23345: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2980|s1'
-991866207: 23346: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f29c0|s1'
-991866207: 23347: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2a00|s1'
-991866207: 23348: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2a40|s1'
-991866207: 23349: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2a80|s1'
-991866207: 23350: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f04a0|s1'
-991866207: 23351: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f04c0|s1'
-991866207: 23352: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0460|s3'
-991866207: 23353: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0480|s3'
-991866207: 23354: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0080|s13'
-991866207: 23355: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f01e0|s9'
-991866207: 23356: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2800|s3'
-991866207: 23357: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f04e0|s1'
-991866207: 23358: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0200|s9'
-991866207: 23359: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2580|s5'
-991866207: 23360: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2840|s3'
-991866207: 23361: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2ac0|s1'
-991866207: 23362: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0500|s1'
-991866207: 23363: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0520|s1'
-991866207: 23364: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2b00|s1'
-991866207: 23365: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0540|s1'
-991866207: 23366: *** free: at 'ltoken.c:320' pnt '0x83f2b00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23367: *** free: at 'abstract.c:5688' pnt '0x83f0520|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23368: *** free: at 'abstract.c:5702' pnt '0x83f0540|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23369: *** free: at 'ltokenList.c:228' pnt '0x83f0200|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 23370: *** free: at 'ltokenList.c:229' pnt '0x83f04e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23371: *** free: at 'ltoken.c:320' pnt '0x83f2ac0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23372: *** free: at 'ltoken.c:320' pnt '0x83f2800|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23373: *** free: at 'abstract.c:5728' pnt '0x83f0500|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23374: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2b40|s1'
-991866207: 23375: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2b80|s1'
-991866207: 23376: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2bc0|s1'
-991866207: 23377: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2c00|s1'
-991866207: 23378: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2c40|s1'
-991866207: 23379: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2c80|s1'
-991866207: 23380: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2cc0|s1'
-991866207: 23381: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2d00|s1'
-991866207: 23382: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2d40|s1'
-991866207: 23383: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0560|s1'
-991866207: 23384: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0580|s1'
-991866207: 23385: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f05a0|s1'
-991866207: 23386: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f05c0|s1'
-991866207: 23387: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0520|s3'
-991866207: 23388: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0540|s3'
-991866207: 23389: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2b00|s3'
-991866207: 23390: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f04e0|s3'
-991866207: 23391: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0200|s11'
-991866207: 23392: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2800|s5'
-991866207: 23393: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2ac0|s3'
-991866207: 23394: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2d80|s1'
-991866207: 23395: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0500|s3'
-991866207: 23396: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f05e0|s1'
-991866207: 23397: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2dc0|s1'
-991866207: 23398: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0600|s1'
-991866207: 23399: *** free: at 'ltoken.c:320' pnt '0x83f2dc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23400: checking heap
-991866207: 23400: *** free: at 'abstract.c:5688' pnt '0x83f05e0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23401: *** free: at 'abstract.c:5702' pnt '0x83f0600|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23402: *** free: at 'ltokenList.c:228' pnt '0x83f0200|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 23403: *** free: at 'ltokenList.c:229' pnt '0x83f04e0|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23404: *** free: at 'ltoken.c:320' pnt '0x83f2d80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23405: *** free: at 'ltoken.c:320' pnt '0x83f2b00|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23406: *** free: at 'abstract.c:5728' pnt '0x83f0500|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23407: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2e00|s1'
-991866207: 23408: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2e40|s1'
-991866207: 23409: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2e80|s1'
-991866207: 23410: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2ec0|s1'
-991866207: 23411: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2f00|s1'
-991866207: 23412: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2f40|s1'
-991866207: 23413: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2f80|s1'
-991866207: 23414: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2fc0|s1'
-991866207: 23415: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3000|s1'
-991866207: 23416: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0620|s1'
-991866207: 23417: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0640|s1'
-991866207: 23418: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0660|s1'
-991866207: 23419: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0680|s1'
-991866207: 23420: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f05e0|s3'
-991866207: 23421: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0600|s3'
-991866207: 23422: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3040|s1'
-991866207: 23423: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f04e0|s5'
-991866207: 23424: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0200|s13'
-991866207: 23425: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3080|s1'
-991866207: 23426: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f30c0|s1'
-991866207: 23427: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3100|s1'
-991866207: 23428: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0500|s5'
-991866207: 23429: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f06a0|s1'
-991866207: 23430: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3140|s1'
-991866207: 23431: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f06c0|s1'
-991866207: 23432: *** free: at 'ltoken.c:320' pnt '0x83f3140|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23433: *** free: at 'abstract.c:5688' pnt '0x83f06a0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23434: *** free: at 'abstract.c:5702' pnt '0x83f06c0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23435: *** free: at 'ltokenList.c:228' pnt '0x83f0200|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 23436: *** free: at 'ltokenList.c:229' pnt '0x83f04e0|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 23437: *** free: at 'ltoken.c:320' pnt '0x83f3100|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23438: *** free: at 'ltoken.c:320' pnt '0x83f3040|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23439: *** free: at 'abstract.c:5728' pnt '0x83f0500|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23440: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3180|s1'
-991866207: 23441: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f31c0|s1'
-991866207: 23442: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3200|s1'
-991866207: 23443: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3240|s1'
-991866207: 23444: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3280|s1'
-991866207: 23445: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f06e0|s1'
-991866207: 23446: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0700|s1'
-991866207: 23447: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0720|s1'
-991866207: 23448: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0740|s1'
-991866207: 23449: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0760|s1'
-991866207: 23450: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f32c0|s1'
-991866207: 23451: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0780|s1'
-991866207: 23452: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f07a0|s1'
-991866207: 23453: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3140|s3'
-991866207: 23454: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3300|s1'
-991866207: 23455: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0200|s15'
-991866207: 23456: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3340|s1'
-991866207: 23457: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f04e0|s7'
-991866207: 23458: *** free: at 'abstract.c:5702' pnt '0x83f04e0|s8': size 8, alloced at 'abstract.c:1322'
-991866207: 23459: *** free: at 'ltokenList.c:228' pnt '0x83f07a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 23460: *** free: at 'ltokenList.c:229' pnt '0x83f0780|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23461: *** free: at 'ltoken.c:320' pnt '0x83f3300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23462: *** free: at 'ltoken.c:320' pnt '0x83f32c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23463: *** free: at 'abstract.c:5728' pnt '0x83f0200|s16': size 16, alloced at 'abstract.c:1367'
-991866207: 23464: *** alloc: at 'lslOpList.c:56' for 144 bytes, got '0x8227500|s9'
-991866207: 23465: *** free: at 'lslOpList.c:69' pnt '0x83a3600|s8': size 128, alloced at 'lslOpList.c:56'
-991866207: 23466: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3040|s3'
-991866207: 23467: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3100|s3'
-991866207: 23468: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3380|s1'
-991866207: 23469: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f33c0|s1'
-991866207: 23470: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3400|s1'
-991866207: 23471: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f0500|s7'
-991866207: 23472: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f06c0|s3'
-991866207: 23473: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f06a0|s3'
-991866207: 23474: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f07c0|s1'
-991866207: 23475: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f07e0|s1'
-991866207: 23476: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3440|s1'
-991866207: 23477: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0800|s1'
-991866207: 23478: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f04e0|s9'
-991866207: 23479: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3480|s1'
-991866207: 23480: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f34c0|s1'
-991866207: 23481: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0780|s3'
-991866207: 23482: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f32c0|s3'
-991866207: 23483: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f0200|s17'
-991866207: 23484: *** free: at 'abstract.c:5702' pnt '0x83f0200|s18': size 8, alloced at 'abstract.c:1322'
-991866207: 23485: *** free: at 'ltokenList.c:228' pnt '0x83f04e0|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 23486: *** free: at 'ltokenList.c:229' pnt '0x83f0800|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23487: *** free: at 'ltoken.c:320' pnt '0x83f34c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23488: *** free: at 'ltoken.c:320' pnt '0x83f3440|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23489: *** free: at 'abstract.c:5728' pnt '0x83f0780|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23490: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3300|s3'
-991866207: 23491: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3500|s1'
-991866207: 23492: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3540|s1'
-991866207: 23493: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3580|s1'
-991866207: 23494: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f35c0|s1'
-991866207: 23495: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3600|s1'
-991866207: 23496: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f07a0|s3'
-991866207: 23497: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0820|s1'
-991866207: 23498: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0840|s1'
-991866207: 23499: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0860|s1'
-991866207: 23500: checking heap
-991866207: 23500: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0880|s1'
-991866207: 23501: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f08a0|s1'
-991866207: 23502: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3640|s1'
-991866207: 23503: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f08c0|s1'
-991866207: 23504: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0200|s19'
-991866207: 23505: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3680|s1'
-991866207: 23506: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f36c0|s1'
-991866207: 23507: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0800|s3'
-991866207: 23508: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f04e0|s11'
-991866207: 23509: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3440|s3'
-991866207: 23510: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0780|s5'
-991866207: 23511: *** free: at 'ltoken.c:320' pnt '0x83f3440|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23512: *** free: at 'abstract.c:5688' pnt '0x83f04e0|s12': size 20, alloced at 'abstract.c:5666'
-991866207: 23513: *** free: at 'abstract.c:5702' pnt '0x83f0780|s6': size 8, alloced at 'abstract.c:1311'
-991866207: 23514: *** free: at 'ltokenList.c:228' pnt '0x83f0200|s20': size 16, alloced at 'ltokenList.c:43'
-991866207: 23515: *** free: at 'ltokenList.c:229' pnt '0x83f08c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23516: *** free: at 'ltoken.c:320' pnt '0x83f36c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23517: *** free: at 'ltoken.c:320' pnt '0x83f3640|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23518: *** free: at 'abstract.c:5728' pnt '0x83f0800|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23519: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f34c0|s3'
-991866207: 23520: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3700|s1'
-991866207: 23521: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3740|s1'
-991866207: 23522: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3780|s1'
-991866207: 23523: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f37c0|s1'
-991866207: 23524: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3800|s1'
-991866207: 23525: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3840|s1'
-991866207: 23526: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3880|s1'
-991866207: 23527: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f38c0|s1'
-991866207: 23528: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f08e0|s1'
-991866207: 23529: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0900|s1'
-991866207: 23530: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0920|s1'
-991866207: 23531: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0940|s1'
-991866207: 23532: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f04e0|s13'
-991866207: 23533: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0780|s7'
-991866207: 23534: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3440|s5'
-991866207: 23535: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f08c0|s3'
-991866207: 23536: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0200|s21'
-991866207: 23537: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3640|s3'
-991866207: 23538: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f36c0|s3'
-991866207: 23539: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3900|s1'
-991866207: 23540: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0800|s5'
-991866207: 23541: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0960|s1'
-991866207: 23542: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3940|s1'
-991866207: 23543: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0980|s1'
-991866207: 23544: *** free: at 'ltoken.c:320' pnt '0x83f3940|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23545: *** free: at 'abstract.c:5688' pnt '0x83f0960|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23546: *** free: at 'abstract.c:5702' pnt '0x83f0980|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23547: *** free: at 'ltokenList.c:228' pnt '0x83f0200|s22': size 16, alloced at 'ltokenList.c:43'
-991866207: 23548: *** free: at 'ltokenList.c:229' pnt '0x83f08c0|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23549: *** free: at 'ltoken.c:320' pnt '0x83f3900|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23550: *** free: at 'ltoken.c:320' pnt '0x83f3440|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 23551: *** free: at 'abstract.c:5728' pnt '0x83f0800|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23552: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3980|s1'
-991866207: 23553: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f39c0|s1'
-991866207: 23554: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3a00|s1'
-991866207: 23555: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3a40|s1'
-991866207: 23556: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3a80|s1'
-991866207: 23557: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3ac0|s1'
-991866207: 23558: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f09a0|s1'
-991866207: 23559: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f09c0|s1'
-991866207: 23560: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f09e0|s1'
-991866207: 23561: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0a00|s1'
-991866207: 23562: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0a20|s1'
-991866207: 23563: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0a40|s1'
-991866207: 23564: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3940|s3'
-991866207: 23565: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0960|s3'
-991866207: 23566: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0980|s3'
-991866207: 23567: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3b00|s1'
-991866207: 23568: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3b40|s1'
-991866207: 23569: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f08c0|s5'
-991866207: 23570: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0200|s23'
-991866207: 23571: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3440|s7'
-991866207: 23572: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0800|s7'
-991866207: 23573: *** free: at 'ltoken.c:320' pnt '0x83f3440|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 23574: *** free: at 'abstract.c:5688' pnt '0x83f0200|s24': size 20, alloced at 'abstract.c:5666'
-991866207: 23575: *** free: at 'abstract.c:5702' pnt '0x83f0800|s8': size 8, alloced at 'abstract.c:1311'
-991866207: 23576: *** free: at 'ltokenList.c:228' pnt '0x83f0980|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 23577: *** free: at 'ltokenList.c:229' pnt '0x83f0960|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23578: *** free: at 'ltoken.c:320' pnt '0x83f3b40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23579: *** free: at 'ltoken.c:320' pnt '0x83f3940|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23580: *** free: at 'abstract.c:5728' pnt '0x83f08c0|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23581: *** alloc: at 'lslOpList.c:56' for 160 bytes, got '0x8227400|s9'
-991866207: 23582: *** free: at 'lslOpList.c:69' pnt '0x8227500|s10': size 144, alloced at 'lslOpList.c:56'
-991866207: 23583: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3900|s3'
-991866207: 23584: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3b80|s1'
-991866207: 23585: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3bc0|s1'
-991866207: 23586: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3c00|s1'
-991866207: 23587: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3c40|s1'
-991866207: 23588: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3c80|s1'
-991866207: 23589: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3cc0|s1'
-991866207: 23590: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3d00|s1'
-991866207: 23591: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3d40|s1'
-991866207: 23592: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0a60|s1'
-991866207: 23593: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0a80|s1'
-991866207: 23594: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0200|s25'
-991866207: 23595: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0800|s9'
-991866207: 23596: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0980|s5'
-991866207: 23597: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0960|s5'
-991866207: 23598: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3b40|s3'
-991866207: 23599: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0aa0|s1'
-991866207: 23600: checking heap
-991866207: 23600: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f08c0|s7'
-991866207: 23601: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3940|s5'
-991866207: 23602: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3440|s9'
-991866207: 23603: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3d80|s1'
-991866207: 23604: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0ac0|s1'
-991866207: 23605: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0ae0|s1'
-991866207: 23606: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3dc0|s1'
-991866207: 23607: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0b00|s1'
-991866207: 23608: *** free: at 'ltoken.c:320' pnt '0x83f3dc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23609: *** free: at 'abstract.c:5688' pnt '0x83f0ae0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23610: *** free: at 'abstract.c:5702' pnt '0x83f0b00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23611: *** free: at 'ltokenList.c:228' pnt '0x83f08c0|s8': size 16, alloced at 'ltokenList.c:43'
-991866207: 23612: *** free: at 'ltokenList.c:229' pnt '0x83f0aa0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23613: *** free: at 'ltoken.c:320' pnt '0x83f3d80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23614: *** free: at 'ltoken.c:320' pnt '0x83f3b40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23615: *** free: at 'abstract.c:5728' pnt '0x83f0ac0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23616: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3e00|s1'
-991866207: 23617: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3e40|s1'
-991866207: 23618: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3e80|s1'
-991866207: 23619: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3ec0|s1'
-991866207: 23620: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3f00|s1'
-991866207: 23621: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3f40|s1'
-991866207: 23622: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0b20|s1'
-991866207: 23623: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0b40|s1'
-991866207: 23624: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0b60|s1'
-991866207: 23625: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0b80|s1'
-991866207: 23626: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0ba0|s1'
-991866207: 23627: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0bc0|s1'
-991866207: 23628: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3dc0|s3'
-991866207: 23629: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0ae0|s3'
-991866207: 23630: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0b00|s3'
-991866207: 23631: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3f80|s1'
-991866207: 23632: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3fc0|s1'
-991866207: 23633: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0aa0|s3'
-991866207: 23634: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f08c0|s9'
-991866207: 23635: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3b40|s5'
-991866207: 23636: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0ac0|s3'
-991866207: 23637: *** free: at 'ltoken.c:320' pnt '0x83f3b40|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 23638: *** free: at 'abstract.c:5688' pnt '0x83f08c0|s10': size 20, alloced at 'abstract.c:5666'
-991866207: 23639: *** free: at 'abstract.c:5702' pnt '0x83f0ac0|s4': size 8, alloced at 'abstract.c:1311'
-991866207: 23640: *** free: at 'ltokenList.c:228' pnt '0x83f0b00|s4': size 16, alloced at 'ltokenList.c:43'
-991866207: 23641: *** free: at 'ltokenList.c:229' pnt '0x83f0ae0|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23642: *** free: at 'ltoken.c:320' pnt '0x83f3fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23643: *** free: at 'ltoken.c:320' pnt '0x83f3dc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23644: *** free: at 'abstract.c:5728' pnt '0x83f0aa0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23645: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3d80|s3'
-991866207: 23646: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2b00|s5'
-991866207: 23647: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2d80|s3'
-991866207: 23648: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f2dc0|s3'
-991866207: 23649: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5000|s1'
-991866207: 23650: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5040|s1'
-991866207: 23651: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5080|s1'
-991866207: 23652: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f50c0|s1'
-991866207: 23653: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5100|s1'
-991866207: 23654: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0be0|s1'
-991866207: 23655: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0c00|s1'
-991866207: 23656: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0c20|s1'
-991866207: 23657: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0c40|s1'
-991866207: 23658: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f08c0|s11'
-991866207: 23659: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0ac0|s5'
-991866207: 23660: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5140|s1'
-991866207: 23661: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0ae0|s5'
-991866207: 23662: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0b00|s5'
-991866207: 23663: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5180|s1'
-991866207: 23664: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f51c0|s1'
-991866207: 23665: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5200|s1'
-991866207: 23666: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0aa0|s5'
-991866207: 23667: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0c60|s1'
-991866207: 23668: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5240|s1'
-991866207: 23669: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0c80|s1'
-991866207: 23670: *** free: at 'ltoken.c:320' pnt '0x83f5240|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23671: *** free: at 'abstract.c:5688' pnt '0x83f0c60|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23672: *** free: at 'abstract.c:5702' pnt '0x83f0c80|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23673: *** free: at 'ltokenList.c:228' pnt '0x83f0b00|s6': size 16, alloced at 'ltokenList.c:43'
-991866207: 23674: *** free: at 'ltokenList.c:229' pnt '0x83f0ae0|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 23675: *** free: at 'ltoken.c:320' pnt '0x83f5200|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23676: *** free: at 'ltoken.c:320' pnt '0x83f5140|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23677: *** free: at 'abstract.c:5728' pnt '0x83f0aa0|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23678: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5280|s1'
-991866207: 23679: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f52c0|s1'
-991866207: 23680: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5300|s1'
-991866207: 23681: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5340|s1'
-991866207: 23682: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5380|s1'
-991866207: 23683: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f53c0|s1'
-991866207: 23684: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5400|s1'
-991866207: 23685: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5440|s1'
-991866207: 23686: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5480|s1'
-991866207: 23687: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0ca0|s1'
-991866207: 23688: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0cc0|s1'
-991866207: 23689: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0ce0|s1'
-991866207: 23690: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0d00|s1'
-991866207: 23691: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0c60|s3'
-991866207: 23692: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0c80|s3'
-991866207: 23693: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5240|s3'
-991866207: 23694: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0ae0|s7'
-991866207: 23695: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0b00|s7'
-991866207: 23696: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5140|s3'
-991866207: 23697: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5200|s3'
-991866207: 23698: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f54c0|s1'
-991866207: 23699: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0aa0|s7'
-991866207: 23700: checking heap
-991866207: 23700: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0d20|s1'
-991866207: 23701: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5500|s1'
-991866207: 23702: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0d40|s1'
-991866207: 23703: *** free: at 'ltoken.c:320' pnt '0x83f5500|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23704: *** free: at 'abstract.c:5688' pnt '0x83f0d20|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23705: *** free: at 'abstract.c:5702' pnt '0x83f0d40|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23706: *** free: at 'ltokenList.c:228' pnt '0x83f0b00|s8': size 16, alloced at 'ltokenList.c:43'
-991866207: 23707: *** free: at 'ltokenList.c:229' pnt '0x83f0ae0|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 23708: *** free: at 'ltoken.c:320' pnt '0x83f54c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23709: *** free: at 'ltoken.c:320' pnt '0x83f5240|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23710: *** free: at 'abstract.c:5728' pnt '0x83f0aa0|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 23711: *** alloc: at 'lslOpList.c:56' for 176 bytes, got '0x8227500|s11'
-991866207: 23712: *** free: at 'lslOpList.c:69' pnt '0x8227400|s10': size 160, alloced at 'lslOpList.c:56'
-991866207: 23713: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5540|s1'
-991866207: 23714: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5580|s1'
-991866207: 23715: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f55c0|s1'
-991866207: 23716: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5600|s1'
-991866207: 23717: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5640|s1'
-991866207: 23718: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5680|s1'
-991866207: 23719: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f56c0|s1'
-991866207: 23720: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5700|s1'
-991866207: 23721: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5740|s1'
-991866207: 23722: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0d60|s1'
-991866207: 23723: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0d80|s1'
-991866207: 23724: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0d20|s3'
-991866207: 23725: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0d40|s3'
-991866207: 23726: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0b00|s9'
-991866207: 23727: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0ae0|s9'
-991866207: 23728: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f54c0|s3'
-991866207: 23729: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0da0|s1'
-991866207: 23730: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0aa0|s9'
-991866207: 23731: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5240|s5'
-991866207: 23732: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5500|s3'
-991866207: 23733: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5780|s1'
-991866207: 23734: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0dc0|s1'
-991866207: 23735: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0de0|s1'
-991866207: 23736: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f57c0|s1'
-991866207: 23737: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0e00|s1'
-991866207: 23738: *** free: at 'ltoken.c:320' pnt '0x83f57c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23739: *** free: at 'abstract.c:5688' pnt '0x83f0de0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23740: *** free: at 'abstract.c:5702' pnt '0x83f0e00|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23741: *** free: at 'ltokenList.c:228' pnt '0x83f0aa0|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 23742: *** free: at 'ltokenList.c:229' pnt '0x83f0da0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23743: *** free: at 'ltoken.c:320' pnt '0x83f5780|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23744: *** free: at 'ltoken.c:320' pnt '0x83f54c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23745: *** free: at 'abstract.c:5728' pnt '0x83f0dc0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23746: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5800|s1'
-991866207: 23747: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5840|s1'
-991866207: 23748: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5880|s1'
-991866207: 23749: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f58c0|s1'
-991866207: 23750: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5900|s1'
-991866207: 23751: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5940|s1'
-991866207: 23752: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5980|s1'
-991866207: 23753: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f59c0|s1'
-991866207: 23754: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5a00|s1'
-991866207: 23755: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0e20|s1'
-991866207: 23756: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0e40|s1'
-991866207: 23757: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0e60|s1'
-991866207: 23758: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0e80|s1'
-991866207: 23759: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0de0|s3'
-991866207: 23760: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0e00|s3'
-991866207: 23761: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f57c0|s3'
-991866207: 23762: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0da0|s3'
-991866207: 23763: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0aa0|s11'
-991866207: 23764: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f54c0|s5'
-991866207: 23765: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5780|s3'
-991866207: 23766: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5a40|s1'
-991866207: 23767: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0dc0|s3'
-991866207: 23768: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0ea0|s1'
-991866207: 23769: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5a80|s1'
-991866207: 23770: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0ec0|s1'
-991866207: 23771: *** free: at 'ltoken.c:320' pnt '0x83f5a80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23772: *** free: at 'abstract.c:5688' pnt '0x83f0ea0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23773: *** free: at 'abstract.c:5702' pnt '0x83f0ec0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23774: *** free: at 'ltokenList.c:228' pnt '0x83f0aa0|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 23775: *** free: at 'ltokenList.c:229' pnt '0x83f0da0|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23776: *** free: at 'ltoken.c:320' pnt '0x83f5a40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23777: *** free: at 'ltoken.c:320' pnt '0x83f57c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23778: *** free: at 'abstract.c:5728' pnt '0x83f0dc0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23779: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5ac0|s1'
-991866207: 23780: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5b00|s1'
-991866207: 23781: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5b40|s1'
-991866207: 23782: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5b80|s1'
-991866207: 23783: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5bc0|s1'
-991866207: 23784: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5c00|s1'
-991866207: 23785: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5c40|s1'
-991866207: 23786: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5c80|s1'
-991866207: 23787: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5cc0|s1'
-991866207: 23788: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0ee0|s1'
-991866207: 23789: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0f00|s1'
-991866207: 23790: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0f20|s1'
-991866207: 23791: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f0f40|s1'
-991866207: 23792: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0ea0|s3'
-991866207: 23793: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0ec0|s3'
-991866207: 23794: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5a80|s3'
-991866207: 23795: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0da0|s5'
-991866207: 23796: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0aa0|s13'
-991866207: 23797: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f57c0|s5'
-991866207: 23798: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5a40|s3'
-991866207: 23799: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5d00|s1'
-991866207: 23800: checking heap
-991866207: 23800: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0dc0|s5'
-991866207: 23801: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f0f60|s1'
-991866207: 23802: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5d40|s1'
-991866207: 23803: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0f80|s1'
-991866207: 23804: *** free: at 'ltoken.c:320' pnt '0x83f5d40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23805: *** free: at 'abstract.c:5688' pnt '0x83f0f60|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23806: *** free: at 'abstract.c:5702' pnt '0x83f0f80|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23807: *** free: at 'ltokenList.c:228' pnt '0x83f0aa0|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 23808: *** free: at 'ltokenList.c:229' pnt '0x83f0da0|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 23809: *** free: at 'ltoken.c:320' pnt '0x83f5d00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23810: *** free: at 'ltoken.c:320' pnt '0x83f5a80|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23811: *** free: at 'abstract.c:5728' pnt '0x83f0dc0|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23812: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5d80|s1'
-991866207: 23813: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5dc0|s1'
-991866207: 23814: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5e00|s1'
-991866207: 23815: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5e40|s1'
-991866207: 23816: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5e80|s1'
-991866207: 23817: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5ec0|s1'
-991866207: 23818: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5f00|s1'
-991866207: 23819: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5f40|s1'
-991866207: 23820: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5f80|s1'
-991866207: 23821: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f0fa0|s1'
-991866207: 23822: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f0fc0|s1'
-991866207: 23823: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f0fe0|s1'
-991866207: 23824: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83e3f00|s5'
-991866207: 23825: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0f60|s3'
-991866207: 23826: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0f80|s3'
-991866207: 23827: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5d40|s3'
-991866207: 23828: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f0da0|s7'
-991866207: 23829: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0aa0|s15'
-991866207: 23830: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5a80|s5'
-991866207: 23831: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5d00|s3'
-991866207: 23832: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5fc0|s1'
-991866207: 23833: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0dc0|s7'
-991866207: 23834: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7000|s1'
-991866207: 23835: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3dc0|s5'
-991866207: 23836: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7020|s1'
-991866207: 23837: *** free: at 'ltoken.c:320' pnt '0x83f3dc0|s6': size 36, alloced at 'ltoken.c:253'
-991866207: 23838: *** free: at 'abstract.c:5688' pnt '0x83f7000|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23839: *** free: at 'abstract.c:5702' pnt '0x83f7020|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23840: *** free: at 'ltokenList.c:228' pnt '0x83f0aa0|s16': size 16, alloced at 'ltokenList.c:43'
-991866207: 23841: *** free: at 'ltokenList.c:229' pnt '0x83f0da0|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 23842: *** free: at 'ltoken.c:320' pnt '0x83f5fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23843: *** free: at 'ltoken.c:320' pnt '0x83f5d40|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23844: *** free: at 'abstract.c:5728' pnt '0x83f0dc0|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 23845: *** alloc: at 'lslOpList.c:56' for 192 bytes, got '0x8227400|s11'
-991866207: 23846: *** free: at 'lslOpList.c:69' pnt '0x8227500|s12': size 176, alloced at 'lslOpList.c:56'
-991866207: 23847: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3fc0|s3'
-991866207: 23848: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3b40|s7'
-991866207: 23849: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9000|s1'
-991866207: 23850: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9040|s1'
-991866207: 23851: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9080|s1'
-991866207: 23852: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f90c0|s1'
-991866207: 23853: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9100|s1'
-991866207: 23854: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9140|s1'
-991866207: 23855: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9180|s1'
-991866207: 23856: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7040|s1'
-991866207: 23857: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7060|s1'
-991866207: 23858: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7000|s3'
-991866207: 23859: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7020|s3'
-991866207: 23860: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0aa0|s17'
-991866207: 23861: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f0da0|s9'
-991866207: 23862: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f91c0|s1'
-991866207: 23863: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7080|s1'
-991866207: 23864: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0dc0|s9'
-991866207: 23865: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9200|s1'
-991866207: 23866: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9240|s1'
-991866207: 23867: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9280|s1'
-991866207: 23868: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f70a0|s1'
-991866207: 23869: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f70c0|s1'
-991866207: 23870: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f92c0|s1'
-991866207: 23871: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f70e0|s1'
-991866207: 23872: *** free: at 'ltoken.c:320' pnt '0x83f92c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23873: *** free: at 'abstract.c:5688' pnt '0x83f70c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23874: *** free: at 'abstract.c:5702' pnt '0x83f70e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23875: *** free: at 'ltokenList.c:228' pnt '0x83f0dc0|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 23876: *** free: at 'ltokenList.c:229' pnt '0x83f7080|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 23877: *** free: at 'ltoken.c:320' pnt '0x83f9280|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23878: *** free: at 'ltoken.c:320' pnt '0x83f91c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23879: *** free: at 'abstract.c:5728' pnt '0x83f70a0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 23880: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9300|s1'
-991866207: 23881: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9340|s1'
-991866207: 23882: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9380|s1'
-991866207: 23883: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f93c0|s1'
-991866207: 23884: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9400|s1'
-991866207: 23885: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9440|s1'
-991866207: 23886: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9480|s1'
-991866207: 23887: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f94c0|s1'
-991866207: 23888: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9500|s1'
-991866207: 23889: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7100|s1'
-991866207: 23890: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7120|s1'
-991866207: 23891: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7140|s1'
-991866207: 23892: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7160|s1'
-991866207: 23893: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f70c0|s3'
-991866207: 23894: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f70e0|s3'
-991866207: 23895: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f92c0|s3'
-991866207: 23896: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7080|s3'
-991866207: 23897: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0dc0|s11'
-991866207: 23898: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f91c0|s3'
-991866207: 23899: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9280|s3'
-991866207: 23900: checking heap
-991866207: 23900: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9540|s1'
-991866207: 23901: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f70a0|s3'
-991866207: 23902: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7180|s1'
-991866207: 23903: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9580|s1'
-991866207: 23904: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f71a0|s1'
-991866207: 23905: *** free: at 'ltoken.c:320' pnt '0x83f9580|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23906: *** free: at 'abstract.c:5688' pnt '0x83f7180|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23907: *** free: at 'abstract.c:5702' pnt '0x83f71a0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23908: *** free: at 'ltokenList.c:228' pnt '0x83f0dc0|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 23909: *** free: at 'ltokenList.c:229' pnt '0x83f7080|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 23910: *** free: at 'ltoken.c:320' pnt '0x83f9540|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23911: *** free: at 'ltoken.c:320' pnt '0x83f92c0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23912: *** free: at 'abstract.c:5728' pnt '0x83f70a0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 23913: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f95c0|s1'
-991866207: 23914: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9600|s1'
-991866207: 23915: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9640|s1'
-991866207: 23916: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9680|s1'
-991866207: 23917: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f96c0|s1'
-991866207: 23918: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9700|s1'
-991866207: 23919: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9740|s1'
-991866207: 23920: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9780|s1'
-991866207: 23921: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f97c0|s1'
-991866207: 23922: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f71c0|s1'
-991866207: 23923: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f71e0|s1'
-991866207: 23924: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7200|s1'
-991866207: 23925: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7220|s1'
-991866207: 23926: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7180|s3'
-991866207: 23927: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f71a0|s3'
-991866207: 23928: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9580|s3'
-991866207: 23929: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7080|s5'
-991866207: 23930: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0dc0|s13'
-991866207: 23931: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f92c0|s5'
-991866207: 23932: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9540|s3'
-991866207: 23933: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9800|s1'
-991866207: 23934: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f70a0|s5'
-991866207: 23935: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7240|s1'
-991866207: 23936: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9840|s1'
-991866207: 23937: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7260|s1'
-991866207: 23938: *** free: at 'ltoken.c:320' pnt '0x83f9840|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23939: *** free: at 'abstract.c:5688' pnt '0x83f7240|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23940: *** free: at 'abstract.c:5702' pnt '0x83f7260|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23941: *** free: at 'ltokenList.c:228' pnt '0x83f0dc0|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 23942: *** free: at 'ltokenList.c:229' pnt '0x83f7080|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 23943: *** free: at 'ltoken.c:320' pnt '0x83f9800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23944: *** free: at 'ltoken.c:320' pnt '0x83f9580|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23945: *** free: at 'abstract.c:5728' pnt '0x83f70a0|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 23946: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9880|s1'
-991866207: 23947: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f98c0|s1'
-991866207: 23948: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9900|s1'
-991866207: 23949: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9940|s1'
-991866207: 23950: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9980|s1'
-991866207: 23951: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f99c0|s1'
-991866207: 23952: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9a00|s1'
-991866207: 23953: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9a40|s1'
-991866207: 23954: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9a80|s1'
-991866207: 23955: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7280|s1'
-991866207: 23956: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f72a0|s1'
-991866207: 23957: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f72c0|s1'
-991866207: 23958: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f72e0|s1'
-991866207: 23959: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7240|s3'
-991866207: 23960: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7260|s3'
-991866207: 23961: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9840|s3'
-991866207: 23962: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7080|s7'
-991866207: 23963: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f0dc0|s15'
-991866207: 23964: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9580|s5'
-991866207: 23965: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9800|s3'
-991866207: 23966: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9ac0|s1'
-991866207: 23967: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f70a0|s7'
-991866207: 23968: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7300|s1'
-991866207: 23969: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9b00|s1'
-991866207: 23970: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7320|s1'
-991866207: 23971: *** free: at 'ltoken.c:320' pnt '0x83f9b00|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23972: *** free: at 'abstract.c:5688' pnt '0x83f7300|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 23973: *** free: at 'abstract.c:5702' pnt '0x83f7320|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 23974: *** free: at 'ltokenList.c:228' pnt '0x83f0dc0|s16': size 16, alloced at 'ltokenList.c:43'
-991866207: 23975: *** free: at 'ltokenList.c:229' pnt '0x83f7080|s8': size 16, alloced at 'ltokenList.c:38'
-991866207: 23976: *** free: at 'ltoken.c:320' pnt '0x83f9ac0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 23977: *** free: at 'ltoken.c:320' pnt '0x83f9840|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 23978: *** free: at 'abstract.c:5728' pnt '0x83f70a0|s8': size 16, alloced at 'abstract.c:1367'
-991866207: 23979: *** alloc: at 'lslOpList.c:56' for 208 bytes, got '0x8227500|s13'
-991866207: 23980: *** free: at 'lslOpList.c:69' pnt '0x8227400|s12': size 192, alloced at 'lslOpList.c:56'
-991866207: 23981: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9b40|s1'
-991866207: 23982: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9b80|s1'
-991866207: 23983: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9bc0|s1'
-991866207: 23984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9c00|s1'
-991866207: 23985: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9c40|s1'
-991866207: 23986: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9c80|s1'
-991866207: 23987: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9cc0|s1'
-991866207: 23988: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9d00|s1'
-991866207: 23989: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9d40|s1'
-991866207: 23990: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7340|s1'
-991866207: 23991: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7360|s1'
-991866207: 23992: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7300|s3'
-991866207: 23993: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7320|s3'
-991866207: 23994: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f0dc0|s17'
-991866207: 23995: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7080|s9'
-991866207: 23996: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9ac0|s3'
-991866207: 23997: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7380|s1'
-991866207: 23998: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f70a0|s9'
-991866207: 23999: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9840|s5'
-991866207: 24000: checking heap
-991866207: 24000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9b00|s3'
-991866207: 24001: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9d80|s1'
-991866207: 24002: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f73a0|s1'
-991866207: 24003: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f73c0|s1'
-991866207: 24004: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9dc0|s1'
-991866207: 24005: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f73e0|s1'
-991866207: 24006: *** free: at 'ltoken.c:320' pnt '0x83f9dc0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24007: *** free: at 'abstract.c:5688' pnt '0x83f73c0|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 24008: *** free: at 'abstract.c:5702' pnt '0x83f73e0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 24009: *** free: at 'ltokenList.c:228' pnt '0x83f70a0|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 24010: *** free: at 'ltokenList.c:229' pnt '0x83f7380|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 24011: *** free: at 'ltoken.c:320' pnt '0x83f9d80|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24012: *** free: at 'ltoken.c:320' pnt '0x83f9ac0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 24013: *** free: at 'abstract.c:5728' pnt '0x83f73a0|s2': size 16, alloced at 'abstract.c:1367'
-991866207: 24014: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9e00|s1'
-991866207: 24015: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9e40|s1'
-991866207: 24016: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9e80|s1'
-991866207: 24017: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9ec0|s1'
-991866207: 24018: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9f00|s1'
-991866207: 24019: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9f40|s1'
-991866207: 24020: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9f80|s1'
-991866207: 24021: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9fc0|s1'
-991866207: 24022: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5d40|s5'
-991866207: 24023: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7400|s1'
-991866207: 24024: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7420|s1'
-991866207: 24025: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7440|s1'
-991866207: 24026: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7460|s1'
-991866207: 24027: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f73c0|s3'
-991866207: 24028: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f73e0|s3'
-991866207: 24029: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9dc0|s3'
-991866207: 24030: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7380|s3'
-991866207: 24031: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f70a0|s11'
-991866207: 24032: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9ac0|s5'
-991866207: 24033: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9d80|s3'
-991866207: 24034: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5fc0|s3'
-991866207: 24035: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f73a0|s3'
-991866207: 24036: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7480|s1'
-991866207: 24037: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3dc0|s7'
-991866207: 24038: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f74a0|s1'
-991866207: 24039: *** free: at 'ltoken.c:320' pnt '0x83f3dc0|s8': size 36, alloced at 'ltoken.c:253'
-991866207: 24040: *** free: at 'abstract.c:5688' pnt '0x83f7480|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 24041: *** free: at 'abstract.c:5702' pnt '0x83f74a0|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 24042: *** free: at 'ltokenList.c:228' pnt '0x83f70a0|s12': size 16, alloced at 'ltokenList.c:43'
-991866207: 24043: *** free: at 'ltokenList.c:229' pnt '0x83f7380|s4': size 16, alloced at 'ltokenList.c:38'
-991866207: 24044: *** free: at 'ltoken.c:320' pnt '0x83f5fc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 24045: *** free: at 'ltoken.c:320' pnt '0x83f9dc0|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 24046: *** free: at 'abstract.c:5728' pnt '0x83f73a0|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 24047: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa000|s1'
-991866207: 24048: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa040|s1'
-991866207: 24049: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa080|s1'
-991866207: 24050: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa0c0|s1'
-991866207: 24051: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa100|s1'
-991866207: 24052: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa140|s1'
-991866207: 24053: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa180|s1'
-991866207: 24054: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa1c0|s1'
-991866207: 24055: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa200|s1'
-991866207: 24056: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f74c0|s1'
-991866207: 24057: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f74e0|s1'
-991866207: 24058: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7500|s1'
-991866207: 24059: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7520|s1'
-991866207: 24060: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7480|s3'
-991866207: 24061: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f74a0|s3'
-991866207: 24062: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa240|s1'
-991866207: 24063: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7380|s5'
-991866207: 24064: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f70a0|s13'
-991866207: 24065: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa280|s1'
-991866207: 24066: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa2c0|s1'
-991866207: 24067: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa300|s1'
-991866207: 24068: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f73a0|s5'
-991866207: 24069: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7540|s1'
-991866207: 24070: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa340|s1'
-991866207: 24071: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7560|s1'
-991866207: 24072: *** free: at 'ltoken.c:320' pnt '0x83fa340|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24073: *** free: at 'abstract.c:5688' pnt '0x83f7540|s2': size 20, alloced at 'abstract.c:5666'
-991866207: 24074: *** free: at 'abstract.c:5702' pnt '0x83f7560|s2': size 8, alloced at 'abstract.c:1311'
-991866207: 24075: *** free: at 'ltokenList.c:228' pnt '0x83f70a0|s14': size 16, alloced at 'ltokenList.c:43'
-991866207: 24076: *** free: at 'ltokenList.c:229' pnt '0x83f7380|s6': size 16, alloced at 'ltokenList.c:38'
-991866207: 24077: *** free: at 'ltoken.c:320' pnt '0x83fa300|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24078: *** free: at 'ltoken.c:320' pnt '0x83fa240|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24079: *** free: at 'abstract.c:5728' pnt '0x83f73a0|s6': size 16, alloced at 'abstract.c:1367'
-991866207: 24080: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa380|s1'
-991866207: 24081: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa3c0|s1'
-991866207: 24082: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa400|s1'
-991866207: 24083: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa440|s1'
-991866207: 24084: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa480|s1'
-991866207: 24085: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7580|s1'
-991866207: 24086: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f75a0|s1'
-991866207: 24087: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f75c0|s1'
-991866207: 24088: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f75e0|s1'
-991866207: 24089: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7600|s1'
-991866207: 24090: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa4c0|s1'
-991866207: 24091: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7620|s1'
-991866207: 24092: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7640|s1'
-991866207: 24093: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa340|s3'
-991866207: 24094: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa500|s1'
-991866207: 24095: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f70a0|s15'
-991866207: 24096: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa540|s1'
-991866207: 24097: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7380|s7'
-991866207: 24098: *** free: at 'abstract.c:5702' pnt '0x83f7380|s8': size 8, alloced at 'abstract.c:1322'
-991866207: 24099: *** free: at 'ltokenList.c:228' pnt '0x83f7640|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 24100: checking heap
-991866207: 24100: *** free: at 'ltokenList.c:229' pnt '0x83f7620|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 24101: *** free: at 'ltoken.c:320' pnt '0x83fa500|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24102: *** free: at 'ltoken.c:320' pnt '0x83fa4c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24103: *** free: at 'abstract.c:5728' pnt '0x83f70a0|s16': size 16, alloced at 'abstract.c:1367'
-991866207: 24104: *** alloc: at 'lslOpList.c:56' for 224 bytes, got '0x8227400|s13'
-991866207: 24105: *** free: at 'lslOpList.c:69' pnt '0x8227500|s14': size 208, alloced at 'lslOpList.c:56'
-991866207: 24106: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa240|s3'
-991866207: 24107: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa300|s3'
-991866207: 24108: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa580|s1'
-991866207: 24109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa5c0|s1'
-991866207: 24110: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa600|s1'
-991866207: 24111: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f73a0|s7'
-991866207: 24112: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7560|s3'
-991866207: 24113: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7540|s3'
-991866207: 24114: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7660|s1'
-991866207: 24115: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7680|s1'
-991866207: 24116: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa640|s1'
-991866207: 24117: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f76a0|s1'
-991866207: 24118: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7380|s9'
-991866207: 24119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa680|s1'
-991866207: 24120: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa6c0|s1'
-991866207: 24121: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7620|s3'
-991866207: 24122: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa4c0|s3'
-991866207: 24123: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f70a0|s17'
-991866207: 24124: *** free: at 'abstract.c:5702' pnt '0x83f70a0|s18': size 8, alloced at 'abstract.c:1322'
-991866207: 24125: *** free: at 'ltokenList.c:228' pnt '0x83f7380|s10': size 16, alloced at 'ltokenList.c:43'
-991866207: 24126: *** free: at 'ltokenList.c:229' pnt '0x83f76a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 24127: *** free: at 'ltoken.c:320' pnt '0x83fa6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24128: *** free: at 'ltoken.c:320' pnt '0x83fa640|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24129: *** free: at 'abstract.c:5728' pnt '0x83f7620|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 24130: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa500|s3'
-991866207: 24131: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa700|s1'
-991866207: 24132: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa740|s1'
-991866207: 24133: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa780|s1'
-991866207: 24134: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa7c0|s1'
-991866207: 24135: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7640|s3'
-991866207: 24136: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f76c0|s1'
-991866207: 24137: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f76e0|s1'
-991866207: 24138: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7700|s1'
-991866207: 24139: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7720|s1'
-991866207: 24140: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa800|s1'
-991866207: 24141: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7740|s1'
-991866207: 24142: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7760|s1'
-991866207: 24143: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa840|s1'
-991866207: 24144: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa880|s1'
-991866207: 24145: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7380|s11'
-991866207: 24146: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa8c0|s1'
-991866207: 24147: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f76a0|s3'
-991866207: 24148: *** free: at 'abstract.c:5702' pnt '0x83f76a0|s4': size 8, alloced at 'abstract.c:1322'
-991866207: 24149: *** free: at 'ltokenList.c:228' pnt '0x83f7760|s2': size 16, alloced at 'ltokenList.c:43'
-991866207: 24150: *** free: at 'ltokenList.c:229' pnt '0x83f7740|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 24151: *** free: at 'ltoken.c:320' pnt '0x83fa880|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24152: *** free: at 'ltoken.c:320' pnt '0x83fa800|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24153: *** free: at 'abstract.c:5728' pnt '0x83f7380|s12': size 16, alloced at 'abstract.c:1367'
-991866207: 24154: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa640|s3'
-991866207: 24155: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa6c0|s3'
-991866207: 24156: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa900|s1'
-991866207: 24157: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa940|s1'
-991866207: 24158: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa980|s1'
-991866207: 24159: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa9c0|s1'
-991866207: 24160: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faa00|s1'
-991866207: 24161: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7620|s5'
-991866207: 24162: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f70a0|s19'
-991866207: 24163: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7780|s1'
-991866207: 24164: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f77a0|s1'
-991866207: 24165: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f77c0|s1'
-991866207: 24166: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faa40|s1'
-991866207: 24167: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f77e0|s1'
-991866207: 24168: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f76a0|s5'
-991866207: 24169: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faa80|s1'
-991866207: 24170: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faac0|s1'
-991866207: 24171: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa880|s3'
-991866207: 24172: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7740|s3'
-991866207: 24173: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa800|s3'
-991866207: 24174: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7380|s13'
-991866207: 24175: *** free: at 'abstract.c:5702' pnt '0x83f7380|s14': size 8, alloced at 'abstract.c:1322'
-991866207: 24176: *** free: at 'ltokenList.c:228' pnt '0x83f76a0|s6': size 16, alloced at 'ltokenList.c:43'
-991866207: 24177: *** free: at 'ltokenList.c:229' pnt '0x83f77e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866207: 24178: *** free: at 'ltoken.c:320' pnt '0x83fa880|s4': size 36, alloced at 'ltoken.c:253'
-991866207: 24179: *** free: at 'ltoken.c:320' pnt '0x83faa40|s2': size 36, alloced at 'ltoken.c:253'
-991866207: 24180: *** free: at 'abstract.c:5728' pnt '0x83f7740|s4': size 16, alloced at 'abstract.c:1367'
-991866207: 24181: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fab00|s1'
-991866207: 24182: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fab40|s1'
-991866207: 24183: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fab80|s1'
-991866207: 24184: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fabc0|s1'
-991866207: 24185: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fac00|s1'
-991866207: 24186: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fac40|s1'
-991866207: 24187: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fac80|s1'
-991866207: 24188: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7760|s3'
-991866207: 24189: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7800|s1'
-991866207: 24190: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7820|s1'
-991866207: 24191: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7840|s1'
-991866207: 24192: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7860|s1'
-991866207: 24193: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83facc0|s1'
-991866207: 24194: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7880|s1'
-991866207: 24195: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7380|s15'
-991866207: 24196: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fad00|s1'
-991866207: 24197: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fad40|s1'
-991866207: 24198: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa880|s5'
-991866207: 24199: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f77e0|s3'
-991866207: 24200: checking heap
-991866208: 24200: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faa40|s3'
-991866208: 24201: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7740|s5'
-991866208: 24202: *** free: at 'abstract.c:5702' pnt '0x83f7740|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 24203: *** free: at 'ltokenList.c:228' pnt '0x83f7380|s16': size 16, alloced at 'ltokenList.c:43'
-991866208: 24204: *** free: at 'ltokenList.c:229' pnt '0x83f7880|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24205: *** free: at 'ltoken.c:320' pnt '0x83fa880|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 24206: *** free: at 'ltoken.c:320' pnt '0x83facc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24207: *** free: at 'abstract.c:5728' pnt '0x83f77e0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24208: *** alloc: at 'lslOpList.c:56' for 240 bytes, got '0x8227500|s15'
-991866208: 24209: *** free: at 'lslOpList.c:69' pnt '0x8227400|s14': size 224, alloced at 'lslOpList.c:56'
-991866208: 24210: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fad80|s1'
-991866208: 24211: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fadc0|s1'
-991866208: 24212: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fae00|s1'
-991866208: 24213: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fae40|s1'
-991866208: 24214: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fae80|s1'
-991866208: 24215: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faec0|s1'
-991866208: 24216: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faf00|s1'
-991866208: 24217: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f76a0|s7'
-991866208: 24218: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f78a0|s1'
-991866208: 24219: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f78c0|s1'
-991866208: 24220: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f78e0|s1'
-991866208: 24221: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7900|s1'
-991866208: 24222: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faf40|s1'
-991866208: 24223: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7380|s17'
-991866208: 24224: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7880|s3'
-991866208: 24225: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fa880|s7'
-991866208: 24226: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83facc0|s3'
-991866208: 24227: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faf80|s1'
-991866208: 24228: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f77e0|s5'
-991866208: 24229: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fafc0|s1'
-991866208: 24230: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7740|s7'
-991866208: 24231: *** free: at 'abstract.c:5702' pnt '0x83f7740|s8': size 8, alloced at 'abstract.c:1322'
-991866208: 24232: *** free: at 'ltokenList.c:228' pnt '0x83f7880|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24233: *** free: at 'ltokenList.c:229' pnt '0x83f7380|s18': size 16, alloced at 'ltokenList.c:38'
-991866208: 24234: *** free: at 'ltoken.c:320' pnt '0x83faf80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24235: *** free: at 'ltoken.c:320' pnt '0x83faf40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24236: *** free: at 'abstract.c:5728' pnt '0x83f77e0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24237: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f9dc0|s5'
-991866208: 24238: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f5fc0|s5'
-991866208: 24239: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83f3dc0|s9'
-991866208: 24240: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc000|s1'
-991866208: 24241: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc040|s1'
-991866208: 24242: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc080|s1'
-991866208: 24243: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc0c0|s1'
-991866208: 24244: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7920|s1'
-991866208: 24245: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7940|s1'
-991866208: 24246: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7960|s1'
-991866208: 24247: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7980|s1'
-991866208: 24248: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f79a0|s1'
-991866208: 24249: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc100|s1'
-991866208: 24250: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f79c0|s1'
-991866208: 24251: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7740|s9'
-991866208: 24252: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc140|s1'
-991866208: 24253: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc180|s1'
-991866208: 24254: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc1c0|s1'
-991866208: 24255: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7380|s19'
-991866208: 24256: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc200|s1'
-991866208: 24257: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f77e0|s7'
-991866208: 24258: *** free: at 'abstract.c:5702' pnt '0x83f77e0|s8': size 8, alloced at 'abstract.c:1322'
-991866208: 24259: *** free: at 'ltokenList.c:228' pnt '0x83f7740|s10': size 16, alloced at 'ltokenList.c:43'
-991866208: 24260: *** free: at 'ltokenList.c:229' pnt '0x83f79c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24261: *** free: at 'ltoken.c:320' pnt '0x83fc1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24262: *** free: at 'ltoken.c:320' pnt '0x83fc100|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24263: *** free: at 'abstract.c:5728' pnt '0x83f7380|s20': size 16, alloced at 'abstract.c:1367'
-991866208: 24264: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc240|s1'
-991866208: 24265: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc280|s1'
-991866208: 24266: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc2c0|s1'
-991866208: 24267: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc300|s1'
-991866208: 24268: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7880|s5'
-991866208: 24269: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f79e0|s1'
-991866208: 24270: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7a00|s1'
-991866208: 24271: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7a20|s1'
-991866208: 24272: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7a40|s1'
-991866208: 24273: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc340|s1'
-991866208: 24274: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7a60|s1'
-991866208: 24275: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7a80|s1'
-991866208: 24276: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc380|s1'
-991866208: 24277: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7aa0|s1'
-991866208: 24278: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc3c0|s1'
-991866208: 24279: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7740|s11'
-991866208: 24280: *** free: at 'abstract.c:5702' pnt '0x83f7740|s12': size 8, alloced at 'abstract.c:1322'
-991866208: 24281: *** free: at 'ltokenList.c:228' pnt '0x83f7a80|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24282: *** free: at 'ltokenList.c:229' pnt '0x83f7a60|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24283: *** free: at 'ltoken.c:320' pnt '0x83fc380|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24284: *** free: at 'ltoken.c:320' pnt '0x83fc340|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24285: *** free: at 'abstract.c:5728' pnt '0x83f7aa0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24286: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc100|s3'
-991866208: 24287: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc1c0|s3'
-991866208: 24288: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc400|s1'
-991866208: 24289: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc440|s1'
-991866208: 24290: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7380|s21'
-991866208: 24291: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f79c0|s3'
-991866208: 24292: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f77e0|s9'
-991866208: 24293: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7ac0|s1'
-991866208: 24294: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7ae0|s1'
-991866208: 24295: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc480|s1'
-991866208: 24296: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7b00|s1'
-991866208: 24297: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7b20|s1'
-991866208: 24298: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc4c0|s1'
-991866208: 24299: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7b40|s1'
-991866208: 24300: checking heap
-991866208: 24300: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc500|s1'
-991866208: 24301: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7a80|s3'
-991866208: 24302: *** free: at 'abstract.c:5702' pnt '0x83f7a80|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24303: *** free: at 'ltokenList.c:228' pnt '0x83f7b20|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24304: *** free: at 'ltokenList.c:229' pnt '0x83f7b00|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24305: *** free: at 'ltoken.c:320' pnt '0x83fc4c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24306: *** free: at 'ltoken.c:320' pnt '0x83fc480|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24307: *** free: at 'abstract.c:5728' pnt '0x83f7b40|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24308: *** alloc: at 'lslOpList.c:56' for 256 bytes, got '0x8227400|s15'
-991866208: 24309: *** free: at 'lslOpList.c:69' pnt '0x8227500|s16': size 240, alloced at 'lslOpList.c:56'
-991866208: 24310: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc340|s3'
-991866208: 24311: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc380|s3'
-991866208: 24312: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc540|s1'
-991866208: 24313: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc580|s1'
-991866208: 24314: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7aa0|s3'
-991866208: 24315: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7a60|s3'
-991866208: 24316: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7740|s13'
-991866208: 24317: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7b60|s1'
-991866208: 24318: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7b80|s1'
-991866208: 24319: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc5c0|s1'
-991866208: 24320: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7ba0|s1'
-991866208: 24321: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7bc0|s1'
-991866208: 24322: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc600|s1'
-991866208: 24323: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7b20|s3'
-991866208: 24324: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc640|s1'
-991866208: 24325: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7b00|s3'
-991866208: 24326: *** free: at 'abstract.c:5702' pnt '0x83f7b00|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24327: *** free: at 'ltokenList.c:228' pnt '0x83f7bc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24328: *** free: at 'ltokenList.c:229' pnt '0x83f7ba0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24329: *** free: at 'ltoken.c:320' pnt '0x83fc600|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24330: *** free: at 'ltoken.c:320' pnt '0x83fc5c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24331: *** free: at 'abstract.c:5728' pnt '0x83f7b20|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24332: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc480|s3'
-991866208: 24333: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc4c0|s3'
-991866208: 24334: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc680|s1'
-991866208: 24335: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc6c0|s1'
-991866208: 24336: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7b40|s3'
-991866208: 24337: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7a80|s5'
-991866208: 24338: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7be0|s1'
-991866208: 24339: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7c00|s1'
-991866208: 24340: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7c20|s1'
-991866208: 24341: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc700|s1'
-991866208: 24342: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7c40|s1'
-991866208: 24343: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7c60|s1'
-991866208: 24344: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc740|s1'
-991866208: 24345: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7c80|s1'
-991866208: 24346: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc780|s1'
-991866208: 24347: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7bc0|s3'
-991866208: 24348: *** free: at 'abstract.c:5702' pnt '0x83f7bc0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24349: *** free: at 'ltokenList.c:228' pnt '0x83f7c60|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24350: *** free: at 'ltokenList.c:229' pnt '0x83f7c40|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24351: *** free: at 'ltoken.c:320' pnt '0x83fc740|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24352: *** free: at 'ltoken.c:320' pnt '0x83fc700|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24353: *** free: at 'abstract.c:5728' pnt '0x83f7c80|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24354: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc5c0|s3'
-991866208: 24355: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc600|s3'
-991866208: 24356: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc7c0|s1'
-991866208: 24357: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc800|s1'
-991866208: 24358: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7b20|s5'
-991866208: 24359: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7ba0|s3'
-991866208: 24360: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7b00|s5'
-991866208: 24361: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7ca0|s1'
-991866208: 24362: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7cc0|s1'
-991866208: 24363: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc840|s1'
-991866208: 24364: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7ce0|s1'
-991866208: 24365: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7d00|s1'
-991866208: 24366: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc880|s1'
-991866208: 24367: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7d20|s1'
-991866208: 24368: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc8c0|s1'
-991866208: 24369: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7c60|s3'
-991866208: 24370: *** free: at 'abstract.c:5702' pnt '0x83f7c60|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24371: *** free: at 'ltokenList.c:228' pnt '0x83f7d00|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24372: *** free: at 'ltokenList.c:229' pnt '0x83f7ce0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24373: *** free: at 'ltoken.c:320' pnt '0x83fc880|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24374: *** free: at 'ltoken.c:320' pnt '0x83fc840|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24375: *** free: at 'abstract.c:5728' pnt '0x83f7d20|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24376: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc700|s3'
-991866208: 24377: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc740|s3'
-991866208: 24378: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc900|s1'
-991866208: 24379: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc940|s1'
-991866208: 24380: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7c80|s3'
-991866208: 24381: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7c40|s3'
-991866208: 24382: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7bc0|s5'
-991866208: 24383: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7d40|s1'
-991866208: 24384: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7d60|s1'
-991866208: 24385: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc980|s1'
-991866208: 24386: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7d80|s1'
-991866208: 24387: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7da0|s1'
-991866208: 24388: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc9c0|s1'
-991866208: 24389: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7dc0|s1'
-991866208: 24390: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fca00|s1'
-991866208: 24391: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7d00|s3'
-991866208: 24392: *** free: at 'abstract.c:5702' pnt '0x83f7d00|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24393: *** free: at 'ltokenList.c:228' pnt '0x83f7da0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24394: *** free: at 'ltokenList.c:229' pnt '0x83f7d80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24395: *** free: at 'ltoken.c:320' pnt '0x83fc9c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24396: *** free: at 'ltoken.c:320' pnt '0x83fc980|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24397: *** free: at 'abstract.c:5728' pnt '0x83f7dc0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24398: *** alloc: at 'lslOpList.c:56' for 272 bytes, got '0x822d200|s7'
-991866208: 24399: *** free: at 'lslOpList.c:69' pnt '0x8227400|s16': size 256, alloced at 'lslOpList.c:56'
-991866208: 24400: checking heap
-991866208: 24400: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc840|s3'
-991866208: 24401: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc880|s3'
-991866208: 24402: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fca40|s1'
-991866208: 24403: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fca80|s1'
-991866208: 24404: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcac0|s1'
-991866208: 24405: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb00|s1'
-991866208: 24406: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7d20|s3'
-991866208: 24407: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7ce0|s3'
-991866208: 24408: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7c60|s5'
-991866208: 24409: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7de0|s1'
-991866208: 24410: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7e00|s1'
-991866208: 24411: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7e20|s1'
-991866208: 24412: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb40|s1'
-991866208: 24413: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7da0|s3'
-991866208: 24414: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7d80|s3'
-991866208: 24415: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc9c0|s3'
-991866208: 24416: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc980|s3'
-991866208: 24417: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7dc0|s3'
-991866208: 24418: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7d00|s5'
-991866208: 24419: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb80|s1'
-991866208: 24420: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7e40|s1'
-991866208: 24421: *** free: at 'ltoken.c:320' pnt '0x83fcb80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24422: *** free: at 'abstract.c:5688' pnt '0x83f7d00|s6': size 20, alloced at 'abstract.c:5666'
-991866208: 24423: *** free: at 'abstract.c:5702' pnt '0x83f7e40|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 24424: *** free: at 'ltokenList.c:228' pnt '0x83f7d80|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24425: *** free: at 'ltokenList.c:229' pnt '0x83f7da0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 24426: *** free: at 'ltoken.c:320' pnt '0x83fc980|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24427: *** free: at 'ltoken.c:320' pnt '0x83fcb40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24428: *** free: at 'abstract.c:5728' pnt '0x83f7dc0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24429: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcbc0|s1'
-991866208: 24430: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcc00|s1'
-991866208: 24431: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcc40|s1'
-991866208: 24432: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcc80|s1'
-991866208: 24433: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fccc0|s1'
-991866208: 24434: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcd00|s1'
-991866208: 24435: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7e60|s1'
-991866208: 24436: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7e80|s1'
-991866208: 24437: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7ea0|s1'
-991866208: 24438: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7ec0|s1'
-991866208: 24439: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7ee0|s1'
-991866208: 24440: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7f00|s1'
-991866208: 24441: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb80|s3'
-991866208: 24442: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7d00|s7'
-991866208: 24443: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7e40|s3'
-991866208: 24444: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcd40|s1'
-991866208: 24445: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcd80|s1'
-991866208: 24446: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7da0|s5'
-991866208: 24447: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7d80|s5'
-991866208: 24448: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb40|s3'
-991866208: 24449: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7dc0|s5'
-991866208: 24450: *** free: at 'ltoken.c:320' pnt '0x83fcb40|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24451: *** free: at 'abstract.c:5688' pnt '0x83f7d80|s6': size 20, alloced at 'abstract.c:5666'
-991866208: 24452: *** free: at 'abstract.c:5702' pnt '0x83f7dc0|s6': size 8, alloced at 'abstract.c:1311'
-991866208: 24453: *** free: at 'ltokenList.c:228' pnt '0x83f7e40|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24454: *** free: at 'ltokenList.c:229' pnt '0x83f7d00|s8': size 16, alloced at 'ltokenList.c:38'
-991866208: 24455: *** free: at 'ltoken.c:320' pnt '0x83fcd80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24456: *** free: at 'ltoken.c:320' pnt '0x83fcb80|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24457: *** free: at 'abstract.c:5728' pnt '0x83f7da0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24458: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fc980|s5'
-991866208: 24459: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcdc0|s1'
-991866208: 24460: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fce00|s1'
-991866208: 24461: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fce40|s1'
-991866208: 24462: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fce80|s1'
-991866208: 24463: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcec0|s1'
-991866208: 24464: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcf00|s1'
-991866208: 24465: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcf40|s1'
-991866208: 24466: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcf80|s1'
-991866208: 24467: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7f20|s1'
-991866208: 24468: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7f40|s1'
-991866208: 24469: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83f7f60|s1'
-991866208: 24470: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83f7f80|s1'
-991866208: 24471: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7d80|s7'
-991866208: 24472: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7dc0|s7'
-991866208: 24473: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb40|s5'
-991866208: 24474: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7d00|s9'
-991866208: 24475: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7e40|s5'
-991866208: 24476: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb80|s5'
-991866208: 24477: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcd80|s3'
-991866208: 24478: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcfc0|s1'
-991866208: 24479: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7da0|s7'
-991866208: 24480: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83f7fa0|s1'
-991866208: 24481: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faf40|s3'
-991866208: 24482: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83f7fc0|s1'
-991866208: 24483: *** free: at 'ltoken.c:320' pnt '0x83faf40|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24484: *** free: at 'abstract.c:5688' pnt '0x83f7fa0|s2': size 20, alloced at 'abstract.c:5666'
-991866208: 24485: *** free: at 'abstract.c:5702' pnt '0x83f7fc0|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 24486: *** free: at 'ltokenList.c:228' pnt '0x83f7e40|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 24487: *** free: at 'ltokenList.c:229' pnt '0x83f7d00|s10': size 16, alloced at 'ltokenList.c:38'
-991866208: 24488: *** free: at 'ltoken.c:320' pnt '0x83fcfc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24489: *** free: at 'ltoken.c:320' pnt '0x83fcb40|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 24490: *** free: at 'abstract.c:5728' pnt '0x83f7da0|s8': size 16, alloced at 'abstract.c:1367'
-991866208: 24491: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faf80|s3'
-991866208: 24492: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd000|s1'
-991866208: 24493: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd040|s1'
-991866208: 24494: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd080|s1'
-991866208: 24495: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd0c0|s1'
-991866208: 24496: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd100|s1'
-991866208: 24497: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd140|s1'
-991866208: 24498: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd180|s1'
-991866208: 24499: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd1c0|s1'
-991866208: 24500: checking heap
-991866208: 24500: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83f7fe0|s1'
-991866208: 24501: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83ff000|s1'
-991866208: 24502: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff020|s1'
-991866208: 24503: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff040|s1'
-991866208: 24504: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff060|s1'
-991866208: 24505: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff080|s1'
-991866208: 24506: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd200|s1'
-991866208: 24507: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff0a0|s1'
-991866208: 24508: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff0c0|s1'
-991866208: 24509: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd240|s1'
-991866208: 24510: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd280|s1'
-991866208: 24511: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd2c0|s1'
-991866208: 24512: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff0e0|s1'
-991866208: 24513: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83ff100|s1'
-991866208: 24514: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd300|s1'
-991866208: 24515: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83ff120|s1'
-991866208: 24516: *** free: at 'ltoken.c:320' pnt '0x83fd300|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24517: *** free: at 'abstract.c:5688' pnt '0x83ff100|s2': size 20, alloced at 'abstract.c:5666'
-991866208: 24518: *** free: at 'abstract.c:5702' pnt '0x83ff120|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 24519: *** free: at 'ltokenList.c:228' pnt '0x83ff0c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24520: *** free: at 'ltokenList.c:229' pnt '0x83ff0a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24521: *** free: at 'ltoken.c:320' pnt '0x83fd2c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24522: *** free: at 'ltoken.c:320' pnt '0x83fd200|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24523: *** free: at 'abstract.c:5728' pnt '0x83ff0e0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24524: *** alloc: at 'lslOpList.c:56' for 288 bytes, got '0x822d600|s11'
-991866208: 24525: *** free: at 'lslOpList.c:69' pnt '0x822d200|s8': size 272, alloced at 'lslOpList.c:56'
-991866208: 24526: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd340|s1'
-991866208: 24527: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd380|s1'
-991866208: 24528: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd3c0|s1'
-991866208: 24529: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd400|s1'
-991866208: 24530: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff140|s1'
-991866208: 24531: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff160|s1'
-991866208: 24532: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff180|s1'
-991866208: 24533: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff1a0|s1'
-991866208: 24534: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff1c0|s1'
-991866208: 24535: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd440|s1'
-991866208: 24536: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff1e0|s1'
-991866208: 24537: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff100|s3'
-991866208: 24538: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd300|s3'
-991866208: 24539: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff0c0|s3'
-991866208: 24540: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd480|s1'
-991866208: 24541: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff0a0|s3'
-991866208: 24542: *** free: at 'abstract.c:5702' pnt '0x83ff0a0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24543: *** free: at 'ltokenList.c:228' pnt '0x83ff100|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24544: *** free: at 'ltokenList.c:229' pnt '0x83ff1e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24545: *** free: at 'ltoken.c:320' pnt '0x83fd300|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24546: *** free: at 'ltoken.c:320' pnt '0x83fd440|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24547: *** free: at 'abstract.c:5728' pnt '0x83ff0c0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24548: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd200|s3'
-991866208: 24549: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd2c0|s3'
-991866208: 24550: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd4c0|s1'
-991866208: 24551: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd500|s1'
-991866208: 24552: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd540|s1'
-991866208: 24553: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd580|s1'
-991866208: 24554: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd5c0|s1'
-991866208: 24555: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd600|s1'
-991866208: 24556: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd640|s1'
-991866208: 24557: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83ff0e0|s3'
-991866208: 24558: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83ff120|s3'
-991866208: 24559: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff200|s1'
-991866208: 24560: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff220|s1'
-991866208: 24561: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff240|s1'
-991866208: 24562: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff0a0|s5'
-991866208: 24563: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd680|s1'
-991866208: 24564: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff1e0|s3'
-991866208: 24565: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff100|s5'
-991866208: 24566: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd440|s3'
-991866208: 24567: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd300|s5'
-991866208: 24568: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd6c0|s1'
-991866208: 24569: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff0c0|s5'
-991866208: 24570: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83ff260|s1'
-991866208: 24571: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd700|s1'
-991866208: 24572: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83ff280|s1'
-991866208: 24573: *** free: at 'ltoken.c:320' pnt '0x83fd700|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24574: *** free: at 'abstract.c:5688' pnt '0x83ff260|s2': size 20, alloced at 'abstract.c:5666'
-991866208: 24575: *** free: at 'abstract.c:5702' pnt '0x83ff280|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 24576: *** free: at 'ltokenList.c:228' pnt '0x83ff100|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 24577: *** free: at 'ltokenList.c:229' pnt '0x83ff1e0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 24578: *** free: at 'ltoken.c:320' pnt '0x83fd6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24579: *** free: at 'ltoken.c:320' pnt '0x83fd680|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24580: *** free: at 'abstract.c:5728' pnt '0x83ff0c0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24581: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd740|s1'
-991866208: 24582: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd780|s1'
-991866208: 24583: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd7c0|s1'
-991866208: 24584: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd800|s1'
-991866208: 24585: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd840|s1'
-991866208: 24586: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd880|s1'
-991866208: 24587: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd8c0|s1'
-991866208: 24588: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd900|s1'
-991866208: 24589: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd940|s1'
-991866208: 24590: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x83ff2a0|s1'
-991866208: 24591: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83ff2c0|s1'
-991866208: 24592: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff2e0|s1'
-991866208: 24593: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff300|s1'
-991866208: 24594: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff260|s3'
-991866208: 24595: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff280|s3'
-991866208: 24596: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd700|s3'
-991866208: 24597: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff1e0|s5'
-991866208: 24598: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff100|s7'
-991866208: 24599: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd680|s3'
-991866208: 24600: checking heap
-991866208: 24600: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd6c0|s3'
-991866208: 24601: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd980|s1'
-991866208: 24602: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff0c0|s7'
-991866208: 24603: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x83ff320|s1'
-991866208: 24604: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd9c0|s1'
-991866208: 24605: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x83ff340|s1'
-991866208: 24606: *** free: at 'ltoken.c:320' pnt '0x83fd9c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24607: *** free: at 'abstract.c:5688' pnt '0x83ff320|s2': size 20, alloced at 'abstract.c:5666'
-991866208: 24608: *** free: at 'abstract.c:5702' pnt '0x83ff340|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 24609: *** free: at 'ltokenList.c:228' pnt '0x83ff100|s8': size 16, alloced at 'ltokenList.c:43'
-991866208: 24610: *** free: at 'ltokenList.c:229' pnt '0x83ff1e0|s6': size 16, alloced at 'ltokenList.c:38'
-991866208: 24611: *** free: at 'ltoken.c:320' pnt '0x83fd980|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24612: *** free: at 'ltoken.c:320' pnt '0x83fd700|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24613: *** free: at 'abstract.c:5728' pnt '0x83ff0c0|s8': size 16, alloced at 'abstract.c:1367'
-991866208: 24614: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fda00|s1'
-991866208: 24615: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fda40|s1'
-991866208: 24616: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fda80|s1'
-991866208: 24617: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdac0|s1'
-991866208: 24618: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdb00|s1'
-991866208: 24619: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdb40|s1'
-991866208: 24620: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdb80|s1'
-991866208: 24621: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff360|s1'
-991866208: 24622: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff380|s1'
-991866208: 24623: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff3a0|s1'
-991866208: 24624: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff3c0|s1'
-991866208: 24625: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff3e0|s1'
-991866208: 24626: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd9c0|s3'
-991866208: 24627: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff320|s3'
-991866208: 24628: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff340|s3'
-991866208: 24629: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdbc0|s1'
-991866208: 24630: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdc00|s1'
-991866208: 24631: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd980|s3'
-991866208: 24632: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff1e0|s7'
-991866208: 24633: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd700|s5'
-991866208: 24634: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff0c0|s9'
-991866208: 24635: *** free: at 'abstract.c:5702' pnt '0x83ff0c0|s10': size 8, alloced at 'abstract.c:1322'
-991866208: 24636: *** free: at 'ltokenList.c:228' pnt '0x83ff340|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24637: *** free: at 'ltokenList.c:229' pnt '0x83ff320|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 24638: *** free: at 'ltoken.c:320' pnt '0x83fd980|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24639: *** free: at 'ltoken.c:320' pnt '0x83fd9c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24640: *** free: at 'abstract.c:5728' pnt '0x83ff1e0|s8': size 16, alloced at 'abstract.c:1367'
-991866208: 24641: *** alloc: at 'lslOpList.c:56' for 304 bytes, got '0x822d200|s9'
-991866208: 24642: *** free: at 'lslOpList.c:69' pnt '0x822d600|s12': size 288, alloced at 'lslOpList.c:56'
-991866208: 24643: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdc40|s1'
-991866208: 24644: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdc80|s1'
-991866208: 24645: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdcc0|s1'
-991866208: 24646: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdd00|s1'
-991866208: 24647: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdd40|s1'
-991866208: 24648: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff100|s9'
-991866208: 24649: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff400|s1'
-991866208: 24650: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff420|s1'
-991866208: 24651: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff440|s1'
-991866208: 24652: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff460|s1'
-991866208: 24653: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdd80|s1'
-991866208: 24654: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff480|s1'
-991866208: 24655: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff0c0|s11'
-991866208: 24656: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fddc0|s1'
-991866208: 24657: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fde00|s1'
-991866208: 24658: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff320|s5'
-991866208: 24659: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd9c0|s5'
-991866208: 24660: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff1e0|s9'
-991866208: 24661: *** free: at 'abstract.c:5702' pnt '0x83ff1e0|s10': size 8, alloced at 'abstract.c:1322'
-991866208: 24662: *** free: at 'ltokenList.c:228' pnt '0x83ff0c0|s12': size 16, alloced at 'ltokenList.c:43'
-991866208: 24663: *** free: at 'ltokenList.c:229' pnt '0x83ff480|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24664: *** free: at 'ltoken.c:320' pnt '0x83fde00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24665: *** free: at 'ltoken.c:320' pnt '0x83fdd80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24666: *** free: at 'abstract.c:5728' pnt '0x83ff320|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24667: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fd980|s5'
-991866208: 24668: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fde40|s1'
-991866208: 24669: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fde80|s1'
-991866208: 24670: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdec0|s1'
-991866208: 24671: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdf00|s1'
-991866208: 24672: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff340|s5'
-991866208: 24673: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff4a0|s1'
-991866208: 24674: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff4c0|s1'
-991866208: 24675: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff4e0|s1'
-991866208: 24676: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff500|s1'
-991866208: 24677: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdf40|s1'
-991866208: 24678: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff520|s1'
-991866208: 24679: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff540|s1'
-991866208: 24680: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdf80|s1'
-991866208: 24681: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdfc0|s1'
-991866208: 24682: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff0c0|s13'
-991866208: 24683: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcb40|s7'
-991866208: 24684: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff480|s3'
-991866208: 24685: *** free: at 'abstract.c:5702' pnt '0x83ff480|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24686: *** free: at 'ltokenList.c:228' pnt '0x83ff540|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24687: *** free: at 'ltokenList.c:229' pnt '0x83ff520|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24688: *** free: at 'ltoken.c:320' pnt '0x83fdfc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24689: *** free: at 'ltoken.c:320' pnt '0x83fdf40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24690: *** free: at 'abstract.c:5728' pnt '0x83ff0c0|s14': size 16, alloced at 'abstract.c:1367'
-991866208: 24691: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdd80|s3'
-991866208: 24692: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fde00|s3'
-991866208: 24693: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fcfc0|s3'
-991866208: 24694: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83faf40|s5'
-991866208: 24695: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401000|s1'
-991866208: 24696: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff320|s7'
-991866208: 24697: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff1e0|s11'
-991866208: 24698: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff560|s1'
-991866208: 24699: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff580|s1'
-991866208: 24700: checking heap
-991866208: 24700: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff5a0|s1'
-991866208: 24701: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401040|s1'
-991866208: 24702: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff5c0|s1'
-991866208: 24703: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff5e0|s1'
-991866208: 24704: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401080|s1'
-991866208: 24705: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84010c0|s1'
-991866208: 24706: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff540|s3'
-991866208: 24707: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401100|s1'
-991866208: 24708: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff520|s3'
-991866208: 24709: *** free: at 'abstract.c:5702' pnt '0x83ff520|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24710: *** free: at 'ltokenList.c:228' pnt '0x83ff5e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24711: *** free: at 'ltokenList.c:229' pnt '0x83ff5c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24712: *** free: at 'ltoken.c:320' pnt '0x84010c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24713: *** free: at 'ltoken.c:320' pnt '0x8401040|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24714: *** free: at 'abstract.c:5728' pnt '0x83ff540|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24715: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401140|s1'
-991866208: 24716: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401180|s1'
-991866208: 24717: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84011c0|s1'
-991866208: 24718: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401200|s1'
-991866208: 24719: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401240|s1'
-991866208: 24720: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff0c0|s15'
-991866208: 24721: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff480|s5'
-991866208: 24722: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff600|s1'
-991866208: 24723: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff620|s1'
-991866208: 24724: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff640|s1'
-991866208: 24725: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401280|s1'
-991866208: 24726: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff660|s1'
-991866208: 24727: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff680|s1'
-991866208: 24728: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84012c0|s1'
-991866208: 24729: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401300|s1'
-991866208: 24730: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff5e0|s3'
-991866208: 24731: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401340|s1'
-991866208: 24732: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff5c0|s3'
-991866208: 24733: *** free: at 'abstract.c:5702' pnt '0x83ff5c0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24734: *** free: at 'ltokenList.c:228' pnt '0x83ff680|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24735: *** free: at 'ltokenList.c:229' pnt '0x83ff660|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24736: *** free: at 'ltoken.c:320' pnt '0x8401300|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24737: *** free: at 'ltoken.c:320' pnt '0x8401280|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24738: *** free: at 'abstract.c:5728' pnt '0x83ff5e0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24739: *** alloc: at 'lslOpList.c:56' for 320 bytes, got '0x822d600|s13'
-991866208: 24740: *** free: at 'lslOpList.c:69' pnt '0x822d200|s10': size 304, alloced at 'lslOpList.c:56'
-991866208: 24741: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401040|s3'
-991866208: 24742: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84010c0|s3'
-991866208: 24743: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401380|s1'
-991866208: 24744: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84013c0|s1'
-991866208: 24745: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401400|s1'
-991866208: 24746: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff540|s5'
-991866208: 24747: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff520|s5'
-991866208: 24748: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff6a0|s1'
-991866208: 24749: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff6c0|s1'
-991866208: 24750: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff6e0|s1'
-991866208: 24751: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401440|s1'
-991866208: 24752: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff700|s1'
-991866208: 24753: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff5c0|s5'
-991866208: 24754: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401480|s1'
-991866208: 24755: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84014c0|s1'
-991866208: 24756: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff660|s3'
-991866208: 24757: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401280|s3'
-991866208: 24758: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff5e0|s5'
-991866208: 24759: *** free: at 'abstract.c:5702' pnt '0x83ff5e0|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 24760: *** free: at 'ltokenList.c:228' pnt '0x83ff5c0|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 24761: *** free: at 'ltokenList.c:229' pnt '0x83ff700|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24762: *** free: at 'ltoken.c:320' pnt '0x84014c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24763: *** free: at 'ltoken.c:320' pnt '0x8401440|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24764: *** free: at 'abstract.c:5728' pnt '0x83ff660|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24765: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401300|s3'
-991866208: 24766: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401500|s1'
-991866208: 24767: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401540|s1'
-991866208: 24768: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401580|s1'
-991866208: 24769: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84015c0|s1'
-991866208: 24770: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401600|s1'
-991866208: 24771: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401640|s1'
-991866208: 24772: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff680|s3'
-991866208: 24773: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff720|s1'
-991866208: 24774: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff740|s1'
-991866208: 24775: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff760|s1'
-991866208: 24776: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff780|s1'
-991866208: 24777: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401680|s1'
-991866208: 24778: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff7a0|s1'
-991866208: 24779: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff5e0|s7'
-991866208: 24780: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84016c0|s1'
-991866208: 24781: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401700|s1'
-991866208: 24782: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84014c0|s3'
-991866208: 24783: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff700|s3'
-991866208: 24784: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401440|s3'
-991866208: 24785: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff660|s5'
-991866208: 24786: *** free: at 'abstract.c:5702' pnt '0x83ff660|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 24787: *** free: at 'ltokenList.c:228' pnt '0x83ff5e0|s8': size 16, alloced at 'ltokenList.c:43'
-991866208: 24788: *** free: at 'ltokenList.c:229' pnt '0x83ff7a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24789: *** free: at 'ltoken.c:320' pnt '0x84014c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24790: *** free: at 'ltoken.c:320' pnt '0x8401680|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24791: *** free: at 'abstract.c:5728' pnt '0x83ff700|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24792: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401740|s1'
-991866208: 24793: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401780|s1'
-991866208: 24794: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84017c0|s1'
-991866208: 24795: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401800|s1'
-991866208: 24796: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401840|s1'
-991866208: 24797: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401880|s1'
-991866208: 24798: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84018c0|s1'
-991866208: 24799: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff5c0|s7'
-991866208: 24800: checking heap
-991866208: 24800: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff7c0|s1'
-991866208: 24801: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff7e0|s1'
-991866208: 24802: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff800|s1'
-991866208: 24803: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff820|s1'
-991866208: 24804: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401900|s1'
-991866208: 24805: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff840|s1'
-991866208: 24806: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff660|s7'
-991866208: 24807: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401940|s1'
-991866208: 24808: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401980|s1'
-991866208: 24809: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84014c0|s5'
-991866208: 24810: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff7a0|s3'
-991866208: 24811: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401680|s3'
-991866208: 24812: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff700|s5'
-991866208: 24813: *** free: at 'abstract.c:5702' pnt '0x83ff700|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 24814: *** free: at 'ltokenList.c:228' pnt '0x83ff660|s8': size 16, alloced at 'ltokenList.c:43'
-991866208: 24815: *** free: at 'ltokenList.c:229' pnt '0x83ff840|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24816: *** free: at 'ltoken.c:320' pnt '0x84014c0|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 24817: *** free: at 'ltoken.c:320' pnt '0x8401900|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24818: *** free: at 'abstract.c:5728' pnt '0x83ff7a0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24819: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84019c0|s1'
-991866208: 24820: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401a00|s1'
-991866208: 24821: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401a40|s1'
-991866208: 24822: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401a80|s1'
-991866208: 24823: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401ac0|s1'
-991866208: 24824: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401b00|s1'
-991866208: 24825: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401b40|s1'
-991866208: 24826: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401b80|s1'
-991866208: 24827: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401bc0|s1'
-991866208: 24828: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff5e0|s9'
-991866208: 24829: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff860|s1'
-991866208: 24830: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff880|s1'
-991866208: 24831: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff8a0|s1'
-991866208: 24832: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff8c0|s1'
-991866208: 24833: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401c00|s1'
-991866208: 24834: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff660|s9'
-991866208: 24835: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff840|s3'
-991866208: 24836: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84014c0|s7'
-991866208: 24837: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401900|s3'
-991866208: 24838: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401c40|s1'
-991866208: 24839: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401c80|s1'
-991866208: 24840: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff7a0|s5'
-991866208: 24841: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401cc0|s1'
-991866208: 24842: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff700|s7'
-991866208: 24843: *** free: at 'abstract.c:5702' pnt '0x83ff700|s8': size 8, alloced at 'abstract.c:1322'
-991866208: 24844: *** free: at 'ltokenList.c:228' pnt '0x83ff840|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24845: *** free: at 'ltokenList.c:229' pnt '0x83ff660|s10': size 16, alloced at 'ltokenList.c:38'
-991866208: 24846: *** free: at 'ltoken.c:320' pnt '0x8401c80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24847: *** free: at 'ltoken.c:320' pnt '0x8401c00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24848: *** free: at 'abstract.c:5728' pnt '0x83ff7a0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24849: *** alloc: at 'lslOpList.c:56' for 336 bytes, got '0x822d200|s11'
-991866208: 24850: *** free: at 'lslOpList.c:69' pnt '0x822d600|s14': size 320, alloced at 'lslOpList.c:56'
-991866208: 24851: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401d00|s1'
-991866208: 24852: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401d40|s1'
-991866208: 24853: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401d80|s1'
-991866208: 24854: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401dc0|s1'
-991866208: 24855: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401e00|s1'
-991866208: 24856: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff8e0|s1'
-991866208: 24857: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff900|s1'
-991866208: 24858: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff920|s1'
-991866208: 24859: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff940|s1'
-991866208: 24860: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ff960|s1'
-991866208: 24861: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401e40|s1'
-991866208: 24862: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff980|s1'
-991866208: 24863: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff700|s9'
-991866208: 24864: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401e80|s1'
-991866208: 24865: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401ec0|s1'
-991866208: 24866: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff660|s11'
-991866208: 24867: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401c00|s3'
-991866208: 24868: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff7a0|s7'
-991866208: 24869: *** free: at 'abstract.c:5702' pnt '0x83ff7a0|s8': size 8, alloced at 'abstract.c:1322'
-991866208: 24870: *** free: at 'ltokenList.c:228' pnt '0x83ff700|s10': size 16, alloced at 'ltokenList.c:43'
-991866208: 24871: *** free: at 'ltokenList.c:229' pnt '0x83ff980|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24872: *** free: at 'ltoken.c:320' pnt '0x8401ec0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24873: *** free: at 'ltoken.c:320' pnt '0x8401e40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24874: *** free: at 'abstract.c:5728' pnt '0x83ff660|s12': size 16, alloced at 'abstract.c:1367'
-991866208: 24875: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401c80|s3'
-991866208: 24876: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401f00|s1'
-991866208: 24877: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401f40|s1'
-991866208: 24878: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401f80|s1'
-991866208: 24879: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff840|s5'
-991866208: 24880: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ff9a0|s1'
-991866208: 24881: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ff9c0|s1'
-991866208: 24882: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ff9e0|s1'
-991866208: 24883: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffa00|s1'
-991866208: 24884: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401fc0|s1'
-991866208: 24885: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffa20|s1'
-991866208: 24886: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffa40|s1'
-991866208: 24887: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdf40|s3'
-991866208: 24888: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffa60|s1'
-991866208: 24889: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdfc0|s3'
-991866208: 24890: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff700|s11'
-991866208: 24891: *** free: at 'abstract.c:5702' pnt '0x83ff700|s12': size 8, alloced at 'abstract.c:1322'
-991866208: 24892: *** free: at 'ltokenList.c:228' pnt '0x83ffa40|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24893: *** free: at 'ltokenList.c:229' pnt '0x83ffa20|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24894: *** free: at 'ltoken.c:320' pnt '0x83fdf40|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 24895: *** free: at 'ltoken.c:320' pnt '0x8401fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24896: *** free: at 'abstract.c:5728' pnt '0x83ffa60|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 24897: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401e40|s3'
-991866208: 24898: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401ec0|s3'
-991866208: 24899: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402000|s1'
-991866208: 24900: checking heap
-991866208: 24900: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402040|s1'
-991866208: 24901: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402080|s1'
-991866208: 24902: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ff660|s13'
-991866208: 24903: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff980|s3'
-991866208: 24904: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ff7a0|s9'
-991866208: 24905: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffa80|s1'
-991866208: 24906: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffaa0|s1'
-991866208: 24907: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84020c0|s1'
-991866208: 24908: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffac0|s1'
-991866208: 24909: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffae0|s1'
-991866208: 24910: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402100|s1'
-991866208: 24911: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402140|s1'
-991866208: 24912: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffa40|s3'
-991866208: 24913: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402180|s1'
-991866208: 24914: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffa20|s3'
-991866208: 24915: *** free: at 'abstract.c:5702' pnt '0x83ffa20|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24916: *** free: at 'ltokenList.c:228' pnt '0x83ffae0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24917: *** free: at 'ltokenList.c:229' pnt '0x83ffac0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24918: *** free: at 'ltoken.c:320' pnt '0x8402140|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24919: *** free: at 'ltoken.c:320' pnt '0x84020c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24920: *** free: at 'abstract.c:5728' pnt '0x83ffa40|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24921: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84021c0|s1'
-991866208: 24922: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402200|s1'
-991866208: 24923: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402240|s1'
-991866208: 24924: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402280|s1'
-991866208: 24925: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84022c0|s1'
-991866208: 24926: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffa60|s3'
-991866208: 24927: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ff700|s13'
-991866208: 24928: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ffb00|s1'
-991866208: 24929: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffb20|s1'
-991866208: 24930: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffb40|s1'
-991866208: 24931: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402300|s1'
-991866208: 24932: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffb60|s1'
-991866208: 24933: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffb80|s1'
-991866208: 24934: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402340|s1'
-991866208: 24935: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402380|s1'
-991866208: 24936: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffae0|s3'
-991866208: 24937: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84023c0|s1'
-991866208: 24938: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffac0|s3'
-991866208: 24939: *** free: at 'abstract.c:5702' pnt '0x83ffac0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 24940: *** free: at 'ltokenList.c:228' pnt '0x83ffb80|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24941: *** free: at 'ltokenList.c:229' pnt '0x83ffb60|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24942: *** free: at 'ltoken.c:320' pnt '0x8402380|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24943: *** free: at 'ltoken.c:320' pnt '0x8402300|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24944: *** free: at 'abstract.c:5728' pnt '0x83ffae0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 24945: *** alloc: at 'lslOpList.c:56' for 352 bytes, got '0x822d600|s15'
-991866208: 24946: *** free: at 'lslOpList.c:69' pnt '0x822d200|s12': size 336, alloced at 'lslOpList.c:56'
-991866208: 24947: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84020c0|s3'
-991866208: 24948: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402140|s3'
-991866208: 24949: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402400|s1'
-991866208: 24950: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402440|s1'
-991866208: 24951: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402480|s1'
-991866208: 24952: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84024c0|s1'
-991866208: 24953: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402500|s1'
-991866208: 24954: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffa40|s5'
-991866208: 24955: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ffa20|s5'
-991866208: 24956: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ffba0|s1'
-991866208: 24957: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffbc0|s1'
-991866208: 24958: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffbe0|s1'
-991866208: 24959: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402540|s1'
-991866208: 24960: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffb80|s3'
-991866208: 24961: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffb60|s3'
-991866208: 24962: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402380|s3'
-991866208: 24963: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402300|s3'
-991866208: 24964: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402580|s1'
-991866208: 24965: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffae0|s5'
-991866208: 24966: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84025c0|s1'
-991866208: 24967: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffac0|s5'
-991866208: 24968: *** free: at 'abstract.c:5702' pnt '0x83ffac0|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 24969: *** free: at 'ltokenList.c:228' pnt '0x83ffb60|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 24970: *** free: at 'ltokenList.c:229' pnt '0x83ffb80|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 24971: *** free: at 'ltoken.c:320' pnt '0x8402580|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24972: *** free: at 'ltoken.c:320' pnt '0x8402540|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24973: *** free: at 'abstract.c:5728' pnt '0x83ffae0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24974: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402600|s1'
-991866208: 24975: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402640|s1'
-991866208: 24976: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402680|s1'
-991866208: 24977: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84026c0|s1'
-991866208: 24978: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402700|s1'
-991866208: 24979: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffc00|s1'
-991866208: 24980: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ffc20|s1'
-991866208: 24981: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ffc40|s1'
-991866208: 24982: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffc60|s1'
-991866208: 24983: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffc80|s1'
-991866208: 24984: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402740|s1'
-991866208: 24985: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffca0|s1'
-991866208: 24986: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffcc0|s1'
-991866208: 24987: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402780|s1'
-991866208: 24988: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84027c0|s1'
-991866208: 24989: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffb60|s5'
-991866208: 24990: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402800|s1'
-991866208: 24991: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffb80|s5'
-991866208: 24992: *** free: at 'abstract.c:5702' pnt '0x83ffb80|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 24993: *** free: at 'ltokenList.c:228' pnt '0x83ffcc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 24994: *** free: at 'ltokenList.c:229' pnt '0x83ffca0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 24995: *** free: at 'ltoken.c:320' pnt '0x84027c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24996: *** free: at 'ltoken.c:320' pnt '0x8402740|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 24997: *** free: at 'abstract.c:5728' pnt '0x83ffb60|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 24998: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402540|s3'
-991866208: 24999: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402580|s3'
-991866208: 25000: checking heap
-991866208: 25000: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402840|s1'
-991866208: 25001: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402880|s1'
-991866208: 25002: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84028c0|s1'
-991866208: 25003: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402900|s1'
-991866208: 25004: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402940|s1'
-991866208: 25005: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffae0|s7'
-991866208: 25006: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ffac0|s7'
-991866208: 25007: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ffce0|s1'
-991866208: 25008: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffd00|s1'
-991866208: 25009: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffd20|s1'
-991866208: 25010: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402980|s1'
-991866208: 25011: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffd40|s1'
-991866208: 25012: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffb80|s7'
-991866208: 25013: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84029c0|s1'
-991866208: 25014: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402a00|s1'
-991866208: 25015: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84027c0|s3'
-991866208: 25016: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffca0|s3'
-991866208: 25017: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402740|s3'
-991866208: 25018: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffb60|s7'
-991866208: 25019: *** free: at 'abstract.c:5702' pnt '0x83ffb60|s8': size 8, alloced at 'abstract.c:1322'
-991866208: 25020: *** free: at 'ltokenList.c:228' pnt '0x83ffb80|s8': size 16, alloced at 'ltokenList.c:43'
-991866208: 25021: *** free: at 'ltokenList.c:229' pnt '0x83ffd40|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25022: *** free: at 'ltoken.c:320' pnt '0x84027c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25023: *** free: at 'ltoken.c:320' pnt '0x8402980|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25024: *** free: at 'abstract.c:5728' pnt '0x83ffca0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25025: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402a40|s1'
-991866208: 25026: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402a80|s1'
-991866208: 25027: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402ac0|s1'
-991866208: 25028: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402b00|s1'
-991866208: 25029: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402b40|s1'
-991866208: 25030: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffcc0|s3'
-991866208: 25031: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x83ffd60|s1'
-991866208: 25032: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x83ffd80|s1'
-991866208: 25033: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffda0|s1'
-991866208: 25034: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffdc0|s1'
-991866208: 25035: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402b80|s1'
-991866208: 25036: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffde0|s1'
-991866208: 25037: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffe00|s1'
-991866208: 25038: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402bc0|s1'
-991866208: 25039: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402c00|s1'
-991866208: 25040: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffb80|s9'
-991866208: 25041: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402c40|s1'
-991866208: 25042: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffd40|s3'
-991866208: 25043: *** free: at 'abstract.c:5702' pnt '0x83ffd40|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25044: *** free: at 'ltokenList.c:228' pnt '0x83ffe00|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25045: *** free: at 'ltokenList.c:229' pnt '0x83ffde0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25046: *** free: at 'ltoken.c:320' pnt '0x8402c00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25047: *** free: at 'ltoken.c:320' pnt '0x8402b80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25048: *** free: at 'abstract.c:5728' pnt '0x83ffb80|s10': size 16, alloced at 'abstract.c:1367'
-991866208: 25049: *** alloc: at 'lslOpList.c:56' for 368 bytes, got '0x822d200|s13'
-991866208: 25050: *** free: at 'lslOpList.c:69' pnt '0x822d600|s16': size 352, alloced at 'lslOpList.c:56'
-991866208: 25051: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402980|s3'
-991866208: 25052: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84027c0|s5'
-991866208: 25053: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402c80|s1'
-991866208: 25054: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402cc0|s1'
-991866208: 25055: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffca0|s5'
-991866208: 25056: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffb60|s9'
-991866208: 25057: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffe20|s1'
-991866208: 25058: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffe40|s1'
-991866208: 25059: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83ffe60|s1'
-991866208: 25060: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402d00|s1'
-991866208: 25061: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffe80|s1'
-991866208: 25062: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffea0|s1'
-991866208: 25063: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402d40|s1'
-991866208: 25064: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffe00|s3'
-991866208: 25065: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402d80|s1'
-991866208: 25066: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffde0|s3'
-991866208: 25067: *** free: at 'abstract.c:5702' pnt '0x83ffde0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25068: *** free: at 'ltokenList.c:228' pnt '0x83ffea0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25069: *** free: at 'ltokenList.c:229' pnt '0x83ffe80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25070: *** free: at 'ltoken.c:320' pnt '0x8402d40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25071: *** free: at 'ltoken.c:320' pnt '0x8402d00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25072: *** free: at 'abstract.c:5728' pnt '0x83ffe00|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25073: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402b80|s3'
-991866208: 25074: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402c00|s3'
-991866208: 25075: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402dc0|s1'
-991866208: 25076: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402e00|s1'
-991866208: 25077: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffb80|s11'
-991866208: 25078: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffd40|s5'
-991866208: 25079: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffec0|s1'
-991866208: 25080: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83ffee0|s1'
-991866208: 25081: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83fff00|s1'
-991866208: 25082: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402e40|s1'
-991866208: 25083: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83fff20|s1'
-991866208: 25084: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83fff40|s1'
-991866208: 25085: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402e80|s1'
-991866208: 25086: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83fff60|s1'
-991866208: 25087: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402ec0|s1'
-991866208: 25088: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffea0|s3'
-991866208: 25089: *** free: at 'abstract.c:5702' pnt '0x83ffea0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25090: *** free: at 'ltokenList.c:228' pnt '0x83fff40|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25091: *** free: at 'ltokenList.c:229' pnt '0x83fff20|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25092: *** free: at 'ltoken.c:320' pnt '0x8402e80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25093: *** free: at 'ltoken.c:320' pnt '0x8402e40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25094: *** free: at 'abstract.c:5728' pnt '0x83fff60|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25095: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402d00|s3'
-991866208: 25096: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402d40|s3'
-991866208: 25097: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402f00|s1'
-991866208: 25098: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402f40|s1'
-991866208: 25099: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83ffe00|s5'
-991866208: 25100: checking heap
-991866208: 25100: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83ffe80|s3'
-991866208: 25101: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffde0|s5'
-991866208: 25102: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83fff80|s1'
-991866208: 25103: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83fffa0|s1'
-991866208: 25104: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402f80|s1'
-991866208: 25105: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83fffc0|s1'
-991866208: 25106: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83fffe0|s1'
-991866208: 25107: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402fc0|s1'
-991866208: 25108: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7da0|s9'
-991866208: 25109: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8401fc0|s3'
-991866208: 25110: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83fff40|s3'
-991866208: 25111: *** free: at 'abstract.c:5702' pnt '0x83fff40|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25112: *** free: at 'ltokenList.c:228' pnt '0x83fffe0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25113: *** free: at 'ltokenList.c:229' pnt '0x83fffc0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25114: *** free: at 'ltoken.c:320' pnt '0x8402fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25115: *** free: at 'ltoken.c:320' pnt '0x8402f80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25116: *** free: at 'abstract.c:5728' pnt '0x83f7da0|s10': size 16, alloced at 'abstract.c:1367'
-991866208: 25117: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402e40|s3'
-991866208: 25118: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8402e80|s3'
-991866208: 25119: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x83fdf40|s5'
-991866208: 25120: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404000|s1'
-991866208: 25121: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83fff60|s3'
-991866208: 25122: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83fff20|s3'
-991866208: 25123: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83ffea0|s5'
-991866208: 25124: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7d00|s11'
-991866208: 25125: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x83f7e40|s7'
-991866208: 25126: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404040|s1'
-991866208: 25127: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x83f7fc0|s3'
-991866208: 25128: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7fa0|s3'
-991866208: 25129: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404080|s1'
-991866208: 25130: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406000|s1'
-991866208: 25131: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84040c0|s1'
-991866208: 25132: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x8406020|s1'
-991866208: 25133: *** free: at 'abstract.c:5702' pnt '0x8406020|s2': size 8, alloced at 'abstract.c:1322'
-991866208: 25134: *** free: at 'ltokenList.c:228' pnt '0x83f7fa0|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 25135: *** free: at 'ltokenList.c:229' pnt '0x83f7fc0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25136: *** free: at 'ltoken.c:320' pnt '0x8404080|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25137: *** free: at 'ltoken.c:320' pnt '0x8404040|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25138: *** free: at 'abstract.c:5728' pnt '0x8406000|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25139: *** alloc: at 'lslOpList.c:56' for 384 bytes, got '0x822d600|s17'
-991866208: 25140: *** free: at 'lslOpList.c:69' pnt '0x822d200|s14': size 368, alloced at 'lslOpList.c:56'
-991866208: 25141: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404100|s1'
-991866208: 25142: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404140|s1'
-991866208: 25143: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404180|s1'
-991866208: 25144: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84041c0|s1'
-991866208: 25145: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x8406040|s1'
-991866208: 25146: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406060|s1'
-991866208: 25147: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406080|s1'
-991866208: 25148: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x84060a0|s1'
-991866208: 25149: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x84060c0|s1'
-991866208: 25150: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404200|s1'
-991866208: 25151: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x84060e0|s1'
-991866208: 25152: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406100|s1'
-991866208: 25153: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404240|s1'
-991866208: 25154: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x83f7fa0|s5'
-991866208: 25155: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404280|s1'
-991866208: 25156: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7fc0|s5'
-991866208: 25157: *** free: at 'abstract.c:5702' pnt '0x83f7fc0|s6': size 8, alloced at 'abstract.c:1322'
-991866208: 25158: *** free: at 'ltokenList.c:228' pnt '0x8406100|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25159: *** free: at 'ltokenList.c:229' pnt '0x84060e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25160: *** free: at 'ltoken.c:320' pnt '0x8404240|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25161: *** free: at 'ltoken.c:320' pnt '0x8404200|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25162: *** free: at 'abstract.c:5728' pnt '0x83f7fa0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 25163: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404040|s3'
-991866208: 25164: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404080|s3'
-991866208: 25165: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84042c0|s1'
-991866208: 25166: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404300|s1'
-991866208: 25167: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x8406000|s3'
-991866208: 25168: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406020|s3'
-991866208: 25169: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406120|s1'
-991866208: 25170: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406140|s1'
-991866208: 25171: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x8406160|s1'
-991866208: 25172: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404340|s1'
-991866208: 25173: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406180|s1'
-991866208: 25174: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x84061a0|s1'
-991866208: 25175: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404380|s1'
-991866208: 25176: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x84061c0|s1'
-991866208: 25177: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84043c0|s1'
-991866208: 25178: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x8406100|s3'
-991866208: 25179: *** free: at 'abstract.c:5702' pnt '0x8406100|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25180: *** free: at 'ltokenList.c:228' pnt '0x84061a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25181: *** free: at 'ltokenList.c:229' pnt '0x8406180|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25182: *** free: at 'ltoken.c:320' pnt '0x8404380|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25183: *** free: at 'ltoken.c:320' pnt '0x8404340|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25184: *** free: at 'abstract.c:5728' pnt '0x84061c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25185: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404200|s3'
-991866208: 25186: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404240|s3'
-991866208: 25187: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404400|s1'
-991866208: 25188: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404440|s1'
-991866208: 25189: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x83f7fa0|s7'
-991866208: 25190: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x84060e0|s3'
-991866208: 25191: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x83f7fc0|s7'
-991866208: 25192: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x84061e0|s1'
-991866208: 25193: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x8406200|s1'
-991866208: 25194: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404480|s1'
-991866208: 25195: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406220|s1'
-991866208: 25196: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406240|s1'
-991866208: 25197: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84044c0|s1'
-991866208: 25198: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406260|s1'
-991866208: 25199: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404500|s1'
-991866208: 25200: checking heap
-991866208: 25200: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x84061a0|s3'
-991866208: 25201: *** free: at 'abstract.c:5702' pnt '0x84061a0|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25202: *** free: at 'ltokenList.c:228' pnt '0x8406240|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25203: *** free: at 'ltokenList.c:229' pnt '0x8406220|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25204: *** free: at 'ltoken.c:320' pnt '0x84044c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25205: *** free: at 'ltoken.c:320' pnt '0x8404480|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25206: *** free: at 'abstract.c:5728' pnt '0x8406260|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25207: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404340|s3'
-991866208: 25208: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404380|s3'
-991866208: 25209: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404540|s1'
-991866208: 25210: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404580|s1'
-991866208: 25211: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x84061c0|s3'
-991866208: 25212: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406180|s3'
-991866208: 25213: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406100|s5'
-991866208: 25214: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406280|s1'
-991866208: 25215: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x84062a0|s1'
-991866208: 25216: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84045c0|s1'
-991866208: 25217: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x84062c0|s1'
-991866208: 25218: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x84062e0|s1'
-991866208: 25219: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404600|s1'
-991866208: 25220: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406300|s1'
-991866208: 25221: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404640|s1'
-991866208: 25222: *** alloc: at 'abstract.c:1322' for 8 bytes, got '0x8406240|s3'
-991866208: 25223: *** free: at 'abstract.c:5702' pnt '0x8406240|s4': size 8, alloced at 'abstract.c:1322'
-991866208: 25224: *** free: at 'ltokenList.c:228' pnt '0x84062e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25225: *** free: at 'ltokenList.c:229' pnt '0x84062c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25226: *** free: at 'ltoken.c:320' pnt '0x8404600|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25227: *** free: at 'ltoken.c:320' pnt '0x84045c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25228: *** free: at 'abstract.c:5728' pnt '0x8406300|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25229: *** alloc: at 'lslOpList.c:56' for 400 bytes, got '0x822d200|s15'
-991866208: 25230: *** free: at 'lslOpList.c:69' pnt '0x822d600|s18': size 384, alloced at 'lslOpList.c:56'
-991866208: 25231: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404480|s3'
-991866208: 25232: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84044c0|s3'
-991866208: 25233: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404680|s1'
-991866208: 25234: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84046c0|s1'
-991866208: 25235: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404700|s1'
-991866208: 25236: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404740|s1'
-991866208: 25237: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404780|s1'
-991866208: 25238: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84047c0|s1'
-991866208: 25239: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404800|s1'
-991866208: 25240: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404840|s1'
-991866208: 25241: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x8406260|s3'
-991866208: 25242: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x8406220|s3'
-991866208: 25243: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x8406240|s5'
-991866208: 25244: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x84062e0|s3'
-991866208: 25245: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x84062c0|s3'
-991866208: 25246: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x84061a0|s5'
-991866208: 25247: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84045c0|s3'
-991866208: 25248: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406300|s3'
-991866208: 25249: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406320|s1'
-991866208: 25250: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404600|s3'
-991866208: 25251: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404880|s1'
-991866208: 25252: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84048c0|s1'
-991866208: 25253: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406340|s1'
-991866208: 25254: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x8406360|s1'
-991866208: 25255: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404900|s1'
-991866208: 25256: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404940|s1'
-991866208: 25257: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x8406380|s1'
-991866208: 25258: *** free: at 'ltoken.c:320' pnt '0x8404900|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25259: *** free: at 'ltoken.c:320' pnt '0x8404940|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25260: *** free: at 'abstract.c:5688' pnt '0x8406360|s2': size 20, alloced at 'abstract.c:5666'
-991866208: 25261: *** free: at 'abstract.c:5702' pnt '0x8406380|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 25262: *** free: at 'ltokenList.c:228' pnt '0x8406320|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25263: *** free: at 'ltokenList.c:229' pnt '0x8406300|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25264: *** free: at 'ltoken.c:320' pnt '0x84048c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25265: *** free: at 'ltoken.c:320' pnt '0x84045c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25266: *** free: at 'abstract.c:5728' pnt '0x8406340|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25267: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404980|s1'
-991866208: 25268: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84049c0|s1'
-991866208: 25269: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404a00|s1'
-991866208: 25270: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404a40|s1'
-991866208: 25271: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404a80|s1'
-991866208: 25272: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404ac0|s1'
-991866208: 25273: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404b00|s1'
-991866208: 25274: *** alloc: at 'abstract.c:1476' for 20 bytes, got '0x84063a0|s1'
-991866208: 25275: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x84063c0|s1'
-991866208: 25276: *** alloc: at 'ltokenList.c:52' for 16 bytes, got '0x84063e0|s1'
-991866208: 25277: *** alloc: at 'ltokenList.c:56' for 16 bytes, got '0x8406400|s1'
-991866208: 25278: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406420|s1'
-991866208: 25279: *** alloc: at 'abstract.c:4879' for 8 bytes, got '0x8406440|s1'
-991866208: 25280: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404940|s3'
-991866208: 25281: *** alloc: at 'ltokenList.c:38' for 16 bytes, got '0x8406380|s3'
-991866208: 25282: *** alloc: at 'ltokenList.c:43' for 16 bytes, got '0x8406320|s3'
-991866208: 25283: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404900|s3'
-991866208: 25284: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84048c0|s3'
-991866208: 25285: *** alloc: at 'abstract.c:1367' for 16 bytes, got '0x8406300|s5'
-991866208: 25286: *** alloc: at 'abstract.c:5666' for 20 bytes, got '0x8406340|s3'
-991866208: 25287: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x84045c0|s5'
-991866208: 25288: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404b40|s1'
-991866208: 25289: *** alloc: at 'abstract.c:1311' for 8 bytes, got '0x8406360|s3'
-991866208: 25290: *** free: at 'ltoken.c:320' pnt '0x84045c0|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 25291: *** free: at 'ltoken.c:320' pnt '0x8404b40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25292: *** free: at 'abstract.c:5688' pnt '0x8406340|s4': size 20, alloced at 'abstract.c:5666'
-991866208: 25293: *** free: at 'abstract.c:5702' pnt '0x8406360|s4': size 8, alloced at 'abstract.c:1311'
-991866208: 25294: *** free: at 'ltokenList.c:228' pnt '0x8406320|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 25295: *** free: at 'ltokenList.c:229' pnt '0x8406380|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25296: *** free: at 'ltoken.c:320' pnt '0x84048c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25297: *** free: at 'ltoken.c:320' pnt '0x8404940|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25298: *** free: at 'abstract.c:5728' pnt '0x8406300|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 25299: *** alloc: at 'ltoken.c:253' for 36 bytes, got '0x8404b80|s1'
-991866208: 25300: checking heap
-991866208: 25300: *** free: at 'lslOpList.c:105' pnt '0x822d200|s16': size 400, alloced at 'lslOpList.c:56'
-991866208: 25301: *** free: at 'lslOpList.c:106' pnt '0x83e3f60|s2': size 12, alloced at 'lslOpList.c:38'
-991866208: 25302: *** free: at 'ra=0x40092cd9' pnt '0x822d800|s10': size 364, alloced at 'ra=0x400932b1'
-991866208: 25303: *** free: at 'ra=0x80a28ed' pnt '0x83e6340|s2': size 39, alloced at 'ra=0x80e6889'
-991866208: 25304: *** free: at 'ra=0x80a55f5' pnt '0x83b1800|s2': size 840, alloced at 'ra=0x80a560f'
-991866208: 25305: *** free: at 'lslparse.c:105' pnt '0x83e3e60|s2': size 4, alloced at 'lslparse.c:58'
-991866208: 25306: *** free: at 'lsymbol.c:338' pnt '0x83aa000|s2': size 8192, alloced at 'lsymbol.c:260'
-991866208: 25307: *** free: at 'lsymbol.c:339' pnt '0x822e000|s6': size 8192, alloced at 'lsymbol.c:214'
-991866208: 25308: *** free: at 'lsymbol.c:340' pnt '0x83a9000|s2': size 4096, alloced at 'lsymbol.c:315'
-991866208: 25309: *** free: at 'lclsyntable.c:179' pnt '0x8232000|s2': size 4096, alloced at 'lclsyntable.c:124'
-991866208: 25310: *** free: at 'ltoken.c:320' pnt '0x83a5380|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25311: *** free: at 'ltoken.c:320' pnt '0x839f700|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25312: *** free: at 'ltoken.c:320' pnt '0x839f740|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25313: *** free: at 'ltoken.c:320' pnt '0x839f780|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25314: *** free: at 'ltoken.c:320' pnt '0x839f7c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25315: *** free: at 'ltoken.c:320' pnt '0x839f800|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25316: *** free: at 'ltoken.c:320' pnt '0x839f840|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25317: *** free: at 'ltoken.c:320' pnt '0x839f880|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25318: *** free: at 'ltoken.c:320' pnt '0x839f8c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25319: *** free: at 'ltoken.c:320' pnt '0x839f900|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25320: *** free: at 'ltoken.c:320' pnt '0x839f940|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25321: *** free: at 'ltoken.c:320' pnt '0x839f980|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25322: *** free: at 'ltoken.c:320' pnt '0x839f9c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25323: *** free: at 'ltoken.c:320' pnt '0x839fa00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25324: *** free: at 'ltoken.c:320' pnt '0x839fa40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25325: *** free: at 'ltoken.c:320' pnt '0x839fa80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25326: *** free: at 'ltoken.c:320' pnt '0x839fac0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25327: *** free: at 'ltoken.c:320' pnt '0x839fb00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25328: *** free: at 'ltoken.c:320' pnt '0x839fb40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25329: *** free: at 'ltoken.c:320' pnt '0x839fb80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25330: *** free: at 'ltoken.c:320' pnt '0x839fbc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25331: *** free: at 'ltoken.c:320' pnt '0x839fc00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25332: *** free: at 'ltoken.c:320' pnt '0x839fc40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25333: *** free: at 'ltoken.c:320' pnt '0x839fc80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25334: *** free: at 'ltoken.c:320' pnt '0x839fcc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25335: *** free: at 'ltoken.c:320' pnt '0x839fd00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25336: *** free: at 'ltoken.c:320' pnt '0x839fd40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25337: *** free: at 'ltoken.c:320' pnt '0x839fd80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25338: *** free: at 'ltoken.c:320' pnt '0x839fdc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25339: *** free: at 'ltoken.c:320' pnt '0x839fe00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25340: *** free: at 'ltoken.c:320' pnt '0x839fe40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25341: *** free: at 'ltoken.c:320' pnt '0x839fe80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25342: *** free: at 'ltoken.c:320' pnt '0x839fec0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25343: *** free: at 'ltoken.c:320' pnt '0x839ff00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25344: *** free: at 'ltoken.c:320' pnt '0x839ff40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25345: *** free: at 'ltoken.c:320' pnt '0x839ff80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25346: *** free: at 'ltoken.c:320' pnt '0x839ffc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25347: *** free: at 'ltoken.c:320' pnt '0x8230000|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25348: *** free: at 'ltoken.c:320' pnt '0x8230040|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25349: *** free: at 'ltoken.c:320' pnt '0x8230080|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25350: *** free: at 'ltoken.c:320' pnt '0x82300c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25351: *** free: at 'ltoken.c:320' pnt '0x8230100|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25352: *** free: at 'ltoken.c:320' pnt '0x8230140|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25353: *** free: at 'ltoken.c:320' pnt '0x8230180|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25354: *** free: at 'ltoken.c:320' pnt '0x82301c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25355: *** free: at 'ltoken.c:320' pnt '0x8230200|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25356: *** free: at 'ltoken.c:320' pnt '0x8230240|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25357: *** free: at 'ltoken.c:320' pnt '0x8230280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25358: *** free: at 'ltoken.c:320' pnt '0x82302c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25359: *** free: at 'ltoken.c:320' pnt '0x8230300|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25360: *** free: at 'ltoken.c:320' pnt '0x8230340|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25361: *** free: at 'ltoken.c:320' pnt '0x8230380|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25362: *** free: at 'ltoken.c:320' pnt '0x82303c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25363: *** free: at 'ltoken.c:320' pnt '0x8230400|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25364: *** free: at 'ltoken.c:320' pnt '0x8230440|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25365: *** free: at 'ltoken.c:320' pnt '0x8230480|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25366: *** free: at 'ltoken.c:320' pnt '0x82304c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25367: *** free: at 'ltoken.c:320' pnt '0x8230500|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25368: *** free: at 'ltoken.c:320' pnt '0x8230540|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25369: *** free: at 'ltoken.c:320' pnt '0x8230580|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25370: *** free: at 'ltoken.c:320' pnt '0x82305c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25371: *** free: at 'ltoken.c:320' pnt '0x8230600|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25372: *** free: at 'ltoken.c:320' pnt '0x8230640|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25373: *** free: at 'ltoken.c:320' pnt '0x8230680|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25374: *** free: at 'ltoken.c:320' pnt '0x82306c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25375: *** free: at 'ltoken.c:320' pnt '0x8230700|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25376: *** free: at 'ltoken.c:320' pnt '0x8230740|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25377: *** free: at 'ltoken.c:320' pnt '0x8230780|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25378: *** free: at 'ltoken.c:320' pnt '0x82307c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25379: *** free: at 'ltoken.c:320' pnt '0x8230800|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25380: *** free: at 'ltoken.c:320' pnt '0x8230840|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25381: *** free: at 'ltoken.c:320' pnt '0x8230880|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25382: *** free: at 'ltoken.c:320' pnt '0x82308c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25383: *** free: at 'ltoken.c:320' pnt '0x8230900|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25384: *** free: at 'ltoken.c:320' pnt '0x8230940|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25385: *** free: at 'ltoken.c:320' pnt '0x8230980|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25386: *** free: at 'ltoken.c:320' pnt '0x82309c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25387: *** free: at 'ltoken.c:320' pnt '0x8230a00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25388: *** free: at 'ltoken.c:320' pnt '0x8230a40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25389: *** free: at 'ltoken.c:320' pnt '0x8230a80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25390: *** free: at 'ltoken.c:320' pnt '0x8230ac0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25391: *** free: at 'ltoken.c:320' pnt '0x8230b00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25392: *** free: at 'ltoken.c:320' pnt '0x8230b40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25393: *** free: at 'ltoken.c:320' pnt '0x8230b80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25394: *** free: at 'ltoken.c:320' pnt '0x8230bc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25395: *** free: at 'ltoken.c:320' pnt '0x8230c00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25396: *** free: at 'ltoken.c:320' pnt '0x8230c40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25397: *** free: at 'ltoken.c:320' pnt '0x8230c80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25398: *** free: at 'ltoken.c:320' pnt '0x8230cc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25399: *** free: at 'ltoken.c:320' pnt '0x8230d00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25400: checking heap
-991866208: 25400: *** free: at 'ltoken.c:320' pnt '0x8230d40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25401: *** free: at 'ltoken.c:320' pnt '0x8230d80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25402: *** free: at 'ltoken.c:320' pnt '0x8230dc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25403: *** free: at 'ltoken.c:320' pnt '0x8230e00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25404: *** free: at 'ltoken.c:320' pnt '0x8230e40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25405: *** free: at 'ltoken.c:320' pnt '0x8230e80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25406: *** free: at 'ltoken.c:320' pnt '0x8230ec0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25407: *** free: at 'ltoken.c:320' pnt '0x8230f00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25408: *** free: at 'ltoken.c:320' pnt '0x8230f40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25409: *** free: at 'ltoken.c:320' pnt '0x8230f80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25410: *** free: at 'ltoken.c:320' pnt '0x8230fc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25411: *** free: at 'ltoken.c:320' pnt '0x83a4000|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25412: *** free: at 'ltoken.c:320' pnt '0x83a4040|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25413: *** free: at 'ltoken.c:320' pnt '0x83a4080|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25414: *** free: at 'ltoken.c:320' pnt '0x83a40c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25415: *** free: at 'ltoken.c:320' pnt '0x83a4100|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25416: *** free: at 'ltoken.c:320' pnt '0x83a4140|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25417: *** free: at 'ltoken.c:320' pnt '0x83a4180|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25418: *** free: at 'ltoken.c:320' pnt '0x83a41c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25419: *** free: at 'ltoken.c:320' pnt '0x83a4200|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25420: *** free: at 'ltoken.c:320' pnt '0x83a4240|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25421: *** free: at 'ltoken.c:320' pnt '0x83a4280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25422: *** free: at 'ltoken.c:320' pnt '0x83a42c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25423: *** free: at 'ltoken.c:320' pnt '0x83a4300|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25424: *** free: at 'ltoken.c:320' pnt '0x83a4340|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25425: *** free: at 'ltoken.c:320' pnt '0x83a4380|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25426: *** free: at 'ltoken.c:320' pnt '0x83a43c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25427: *** free: at 'ltoken.c:320' pnt '0x83a4400|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25428: *** free: at 'ltoken.c:320' pnt '0x83a4440|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25429: *** free: at 'ltoken.c:320' pnt '0x83a4480|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25430: *** free: at 'ltoken.c:320' pnt '0x83a44c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25431: *** free: at 'ltoken.c:320' pnt '0x83a4500|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25432: *** free: at 'ltoken.c:320' pnt '0x83a4540|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25433: *** free: at 'ltoken.c:320' pnt '0x83a4580|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25434: *** free: at 'ltoken.c:320' pnt '0x83a45c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25435: *** free: at 'ltoken.c:320' pnt '0x83a4600|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25436: *** free: at 'ltoken.c:320' pnt '0x83a4640|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25437: *** free: at 'ltoken.c:320' pnt '0x83a4680|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25438: *** free: at 'ltoken.c:320' pnt '0x83a46c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25439: *** free: at 'ltoken.c:320' pnt '0x83a4700|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25440: *** free: at 'ltoken.c:320' pnt '0x83a4740|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25441: *** free: at 'ltoken.c:320' pnt '0x83a4780|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25442: *** free: at 'ltoken.c:320' pnt '0x83a47c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25443: *** free: at 'ltoken.c:320' pnt '0x83a4800|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25444: *** free: at 'ltoken.c:320' pnt '0x83a4840|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25445: *** free: at 'ltoken.c:320' pnt '0x83a4880|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25446: *** free: at 'ltoken.c:320' pnt '0x83a48c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25447: *** free: at 'ltoken.c:320' pnt '0x83a4900|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25448: *** free: at 'ltoken.c:320' pnt '0x83a4940|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25449: *** free: at 'ltoken.c:320' pnt '0x83a4980|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25450: *** free: at 'ltoken.c:320' pnt '0x83a49c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25451: *** free: at 'ltoken.c:320' pnt '0x83a4a00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25452: *** free: at 'ltoken.c:320' pnt '0x83a4a40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25453: *** free: at 'ltoken.c:320' pnt '0x83a4a80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25454: *** free: at 'ltoken.c:320' pnt '0x83a4ac0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25455: *** free: at 'ltoken.c:320' pnt '0x83a4b00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25456: *** free: at 'ltoken.c:320' pnt '0x83a4b40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25457: *** free: at 'ltoken.c:320' pnt '0x83a4b80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25458: *** free: at 'ltoken.c:320' pnt '0x83a4bc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25459: *** free: at 'ltoken.c:320' pnt '0x83a4c00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25460: *** free: at 'ltoken.c:320' pnt '0x83a4c40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25461: *** free: at 'ltoken.c:320' pnt '0x83a4c80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25462: *** free: at 'ltoken.c:320' pnt '0x83a4cc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25463: *** free: at 'ltoken.c:320' pnt '0x83a4e40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25464: *** free: at 'ltoken.c:320' pnt '0x83a5100|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25465: *** free: at 'ltoken.c:320' pnt '0x83a5180|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25466: *** free: at 'ltoken.c:320' pnt '0x83a5200|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25467: *** free: at 'ltoken.c:320' pnt '0x83a5280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25468: *** free: at 'ltoken.c:320' pnt '0x83a5300|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25469: *** free: at 'ltoken.c:320' pnt '0x83a5400|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25470: *** free: at 'ltoken.c:320' pnt '0x83a54c0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25471: *** free: at 'ltoken.c:320' pnt '0x83a5540|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25472: *** free: at 'ltoken.c:320' pnt '0x83a5800|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25473: *** free: at 'ltoken.c:320' pnt '0x83a5880|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25474: *** free: at 'ltoken.c:320' pnt '0x83a5080|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25475: *** free: at 'ltoken.c:320' pnt '0x83a5940|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25476: *** free: at 'ltoken.c:320' pnt '0x83a5480|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25477: *** free: at 'ltoken.c:320' pnt '0x83a5c40|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25478: *** free: at 'ltoken.c:320' pnt '0x83a59c0|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25479: *** free: at 'ltoken.c:320' pnt '0x83a5f80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25480: *** free: at 'ltoken.c:320' pnt '0x83ad000|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25481: *** free: at 'ltoken.c:320' pnt '0x83ad340|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25482: *** free: at 'ltoken.c:320' pnt '0x83ad480|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25483: *** free: at 'ltoken.c:320' pnt '0x83ad600|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25484: *** free: at 'ltoken.c:320' pnt '0x83ad700|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25485: *** free: at 'ltoken.c:320' pnt '0x83ad5c0|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25486: *** free: at 'ltoken.c:320' pnt '0x83ad940|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25487: *** free: at 'ltoken.c:320' pnt '0x83adcc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25488: *** free: at 'ltoken.c:320' pnt '0x83ade00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25489: *** free: at 'ltoken.c:320' pnt '0x83adf40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25490: *** free: at 'ltoken.c:320' pnt '0x83adb80|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25491: *** free: at 'ltoken.c:320' pnt '0x83a5780|s18': size 36, alloced at 'ltoken.c:76'
-991866208: 25492: *** free: at 'ltoken.c:320' pnt '0x83ad200|s28': size 36, alloced at 'ltoken.c:76'
-991866208: 25493: *** free: at 'ltoken.c:320' pnt '0x83a7280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25494: *** free: at 'ltoken.c:320' pnt '0x83a7380|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25495: *** free: at 'ltoken.c:320' pnt '0x83a74c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25496: *** free: at 'ltoken.c:320' pnt '0x83a7340|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25497: *** free: at 'ltoken.c:320' pnt '0x83a7600|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25498: *** free: at 'ltoken.c:320' pnt '0x83a7700|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25499: *** free: at 'ltoken.c:320' pnt '0x83a7780|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25500: checking heap
-991866208: 25500: *** free: at 'ltoken.c:320' pnt '0x83a7880|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25501: *** free: at 'ltoken.c:320' pnt '0x83a7900|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25502: *** free: at 'ltoken.c:320' pnt '0x83a7a00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25503: *** free: at 'ltoken.c:320' pnt '0x83a7a80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25504: *** free: at 'ltoken.c:320' pnt '0x83a7b80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25505: *** free: at 'ltoken.c:320' pnt '0x83a7c00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25506: *** free: at 'ltoken.c:320' pnt '0x83a7d00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25507: *** free: at 'ltoken.c:320' pnt '0x83a7d80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25508: *** free: at 'ltoken.c:320' pnt '0x83a7e80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25509: *** free: at 'ltoken.c:320' pnt '0x83a7f00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25510: *** free: at 'lcltokentable.c:216' pnt '0x83ac000|s2': size 4096, alloced at 'lcltokentable.c:164'
-991866208: 25511: *** free: at 'syntable.c:204' pnt '0x8233800|s2': size 1024, alloced at 'syntable.c:184'
-991866208: 25512: *** free: at 'ltoken.c:320' pnt '0x83b0380|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25513: *** free: at 'ltoken.c:320' pnt '0x83a7180|s22': size 36, alloced at 'ltoken.c:76'
-991866208: 25514: *** free: at 'ltoken.c:320' pnt '0x83a5f40|s12': size 36, alloced at 'ltoken.c:76'
-991866208: 25515: *** free: at 'ltoken.c:320' pnt '0x83adb40|s16': size 36, alloced at 'ltoken.c:76'
-991866208: 25516: *** free: at 'ltoken.c:320' pnt '0x83a5e40|s12': size 36, alloced at 'ltoken.c:76'
-991866208: 25517: *** free: at 'ltoken.c:320' pnt '0x83a5ec0|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25518: *** free: at 'ltoken.c:320' pnt '0x83af000|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25519: *** free: at 'ltoken.c:320' pnt '0x83af040|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25520: *** free: at 'ltoken.c:320' pnt '0x83af080|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25521: *** free: at 'ltoken.c:320' pnt '0x83af0c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25522: *** free: at 'ltoken.c:320' pnt '0x83af140|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25523: *** free: at 'ltoken.c:320' pnt '0x83af180|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25524: *** free: at 'ltoken.c:320' pnt '0x83b0ec0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25525: *** free: at 'ltoken.c:320' pnt '0x83af340|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25526: *** free: at 'ltoken.c:320' pnt '0x83af380|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25527: *** free: at 'ltoken.c:320' pnt '0x83af300|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25528: *** free: at 'ltoken.c:320' pnt '0x83af2c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25529: *** free: at 'ltoken.c:320' pnt '0x83b0680|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25530: *** free: at 'ltoken.c:320' pnt '0x83b0000|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25531: *** free: at 'ltoken.c:320' pnt '0x83af240|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25532: *** free: at 'ltoken.c:320' pnt '0x83b0140|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25533: *** free: at 'ltoken.c:320' pnt '0x83af280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25534: *** free: at 'ltoken.c:320' pnt '0x83b0080|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25535: *** free: at 'ltoken.c:320' pnt '0x83b0440|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25536: *** free: at 'ltoken.c:320' pnt '0x83cbf00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25537: *** free: at 'ltoken.c:320' pnt '0x83af3c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25538: *** free: at 'ltoken.c:320' pnt '0x83af400|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25539: *** free: at 'ltoken.c:320' pnt '0x83af440|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25540: *** free: at 'ltoken.c:320' pnt '0x83af480|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25541: *** free: at 'ltoken.c:320' pnt '0x83af4c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25542: *** free: at 'ltoken.c:320' pnt '0x83ad1c0|s30': size 36, alloced at 'ltoken.c:76'
-991866208: 25543: *** free: at 'ltoken.c:320' pnt '0x83ad680|s24': size 36, alloced at 'ltoken.c:76'
-991866208: 25544: *** free: at 'ltoken.c:320' pnt '0x83a5e00|s12': size 36, alloced at 'ltoken.c:76'
-991866208: 25545: *** free: at 'ltoken.c:320' pnt '0x83a7040|s24': size 36, alloced at 'ltoken.c:76'
-991866208: 25546: *** free: at 'ltoken.c:320' pnt '0x83a7540|s18': size 36, alloced at 'ltoken.c:76'
-991866208: 25547: *** free: at 'ltoken.c:320' pnt '0x83a7fc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25548: *** free: at 'ltoken.c:320' pnt '0x83a7ec0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25549: *** free: at 'ltoken.c:320' pnt '0x83a7e40|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25550: *** free: at 'ltoken.c:320' pnt '0x83af600|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25551: *** free: at 'ltoken.c:320' pnt '0x83af700|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25552: *** free: at 'ltoken.c:320' pnt '0x83af200|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25553: *** free: at 'ltoken.c:320' pnt '0x83dd9c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25554: *** free: at 'ltoken.c:320' pnt '0x83af8c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25555: *** free: at 'ltoken.c:320' pnt '0x83bb480|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25556: *** free: at 'ltoken.c:320' pnt '0x83baa40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25557: *** free: at 'ltoken.c:320' pnt '0x83b0f40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25558: *** free: at 'ltoken.c:320' pnt '0x83af980|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25559: *** free: at 'ltoken.c:320' pnt '0x83af9c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25560: *** free: at 'ltoken.c:320' pnt '0x83afa00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25561: *** free: at 'ltoken.c:320' pnt '0x83afa40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25562: *** free: at 'ltoken.c:320' pnt '0x83afa80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25563: *** free: at 'ltoken.c:320' pnt '0x83afac0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25564: *** free: at 'ltoken.c:320' pnt '0x83afb00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25565: *** free: at 'ltoken.c:320' pnt '0x83afb40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25566: *** free: at 'ltoken.c:320' pnt '0x83afb80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25567: *** free: at 'ltoken.c:320' pnt '0x83afbc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25568: *** free: at 'ltoken.c:320' pnt '0x83afc00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25569: *** free: at 'ltoken.c:320' pnt '0x83afc40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25570: *** free: at 'ltoken.c:320' pnt '0x83afc80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25571: *** free: at 'ltoken.c:320' pnt '0x83afcc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25572: *** free: at 'ltoken.c:320' pnt '0x83afd00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25573: *** free: at 'ltoken.c:320' pnt '0x83afd40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25574: *** free: at 'ltoken.c:320' pnt '0x83afd80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25575: *** free: at 'ltoken.c:320' pnt '0x83afdc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25576: *** free: at 'ltoken.c:320' pnt '0x83afe00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25577: *** free: at 'ltoken.c:320' pnt '0x83afe40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25578: *** free: at 'ltoken.c:320' pnt '0x83afe80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25579: *** free: at 'ltoken.c:320' pnt '0x83b0740|s18': size 36, alloced at 'ltoken.c:76'
-991866208: 25580: *** free: at 'ltoken.c:320' pnt '0x83b01c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25581: *** free: at 'ltoken.c:320' pnt '0x83b0240|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25582: *** free: at 'ltoken.c:320' pnt '0x83b02c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25583: *** free: at 'ltoken.c:320' pnt '0x83b0340|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25584: *** free: at 'ltoken.c:320' pnt '0x83aff40|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25585: *** free: at 'ltoken.c:320' pnt '0x83b03c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25586: *** free: at 'ltoken.c:320' pnt '0x83b0400|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25587: *** free: at 'ltoken.c:320' pnt '0x83b0180|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25588: *** free: at 'ltoken.c:320' pnt '0x83b04c0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25589: *** free: at 'ltoken.c:320' pnt '0x83b0200|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25590: *** free: at 'ltoken.c:320' pnt '0x83b0640|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25591: *** free: at 'ltoken.c:320' pnt '0x83b0100|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25592: *** free: at 'ltoken.c:320' pnt '0x83b06c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25593: *** free: at 'ltoken.c:320' pnt '0x83b0dc0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25594: *** free: at 'ltoken.c:320' pnt '0x83bae00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25595: *** free: at 'ltoken.c:320' pnt '0x83b0580|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25596: *** free: at 'ltoken.c:320' pnt '0x83b0540|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25597: *** free: at 'ltoken.c:320' pnt '0x83affc0|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25598: *** free: at 'ltoken.c:320' pnt '0x83b0700|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25599: *** free: at 'ltoken.c:320' pnt '0x83b0500|s12': size 36, alloced at 'ltoken.c:76'
-991866208: 25600: checking heap
-991866208: 25600: *** free: at 'ltoken.c:320' pnt '0x83b0280|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25601: *** free: at 'ltoken.c:320' pnt '0x83b00c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25602: *** free: at 'ltoken.c:320' pnt '0x83b07c0|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25603: *** free: at 'ltoken.c:320' pnt '0x83b0600|s12': size 36, alloced at 'ltoken.c:76'
-991866208: 25604: *** free: at 'ltoken.c:320' pnt '0x83b09c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25605: *** free: at 'ltoken.c:320' pnt '0x83b0480|s16': size 36, alloced at 'ltoken.c:76'
-991866208: 25606: *** free: at 'ltoken.c:320' pnt '0x83b0780|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25607: *** free: at 'ltoken.c:320' pnt '0x83b0840|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25608: *** free: at 'ltoken.c:320' pnt '0x83b0040|s20': size 36, alloced at 'ltoken.c:76'
-991866208: 25609: *** free: at 'ltoken.c:320' pnt '0x83b0900|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25610: *** free: at 'ltoken.c:320' pnt '0x83b0980|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25611: *** free: at 'ltoken.c:320' pnt '0x83b0a80|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25612: *** free: at 'ltoken.c:320' pnt '0x83b0880|s10': size 36, alloced at 'ltoken.c:76'
-991866208: 25613: *** free: at 'ltoken.c:320' pnt '0x83b0940|s8': size 36, alloced at 'ltoken.c:76'
-991866208: 25614: *** free: at 'ltoken.c:320' pnt '0x83b0a40|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25615: *** free: at 'ltoken.c:320' pnt '0x83b0b40|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25616: *** free: at 'ltoken.c:320' pnt '0x83b05c0|s18': size 36, alloced at 'ltoken.c:76'
-991866208: 25617: *** free: at 'ltoken.c:320' pnt '0x83b0bc0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25618: *** free: at 'ltoken.c:320' pnt '0x83b0ac0|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25619: *** free: at 'ltoken.c:320' pnt '0x83b0c40|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25620: *** free: at 'ltoken.c:320' pnt '0x83b0b00|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25621: *** free: at 'ltoken.c:320' pnt '0x83b0cc0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25622: *** free: at 'ltoken.c:320' pnt '0x83b0b80|s6': size 36, alloced at 'ltoken.c:76'
-991866208: 25623: *** free: at 'ltoken.c:320' pnt '0x83a7580|s16': size 36, alloced at 'ltoken.c:76'
-991866208: 25624: *** free: at 'ltoken.c:320' pnt '0x83af100|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25625: *** free: at 'ltoken.c:320' pnt '0x83af1c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25626: *** free: at 'ltoken.c:320' pnt '0x83af500|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25627: *** free: at 'ltoken.c:320' pnt '0x83af540|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25628: *** free: at 'ltoken.c:320' pnt '0x83af580|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25629: *** free: at 'ltoken.c:320' pnt '0x83af5c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25630: *** free: at 'ltoken.c:320' pnt '0x83af640|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25631: *** free: at 'ltoken.c:320' pnt '0x83af680|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25632: *** free: at 'ltoken.c:320' pnt '0x83af6c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25633: *** free: at 'ltoken.c:320' pnt '0x83af740|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25634: *** free: at 'ltoken.c:320' pnt '0x83af780|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25635: *** free: at 'ltoken.c:320' pnt '0x83af7c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25636: *** free: at 'ltoken.c:320' pnt '0x83af800|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25637: *** free: at 'ltoken.c:320' pnt '0x83af840|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25638: *** free: at 'ltoken.c:320' pnt '0x83af880|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25639: *** free: at 'ltoken.c:320' pnt '0x83af900|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25640: *** free: at 'ltoken.c:320' pnt '0x83af940|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25641: *** free: at 'ltoken.c:320' pnt '0x83aff80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25642: *** free: at 'ltoken.c:320' pnt '0x83b0800|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25643: *** free: at 'ltoken.c:320' pnt '0x83b0300|s14': size 36, alloced at 'ltoken.c:76'
-991866208: 25644: *** free: at 'ltoken.c:320' pnt '0x83cb580|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25645: *** free: at 'ltoken.c:320' pnt '0x83c7500|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25646: *** free: at 'ltoken.c:320' pnt '0x83bb0c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25647: *** free: at 'ltoken.c:320' pnt '0x83b6480|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25648: *** free: at 'ltoken.c:320' pnt '0x83e6280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25649: *** free: at 'ltoken.c:320' pnt '0x83c7000|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25650: *** free: at 'ltoken.c:320' pnt '0x83c7280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25651: *** free: at 'ltoken.c:320' pnt '0x83cc940|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25652: *** free: at 'ltoken.c:320' pnt '0x83ce280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25653: *** free: at 'ltoken.c:320' pnt '0x83cec00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25654: *** free: at 'ltoken.c:320' pnt '0x83d3200|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25655: *** free: at 'ltoken.c:320' pnt '0x83d34c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25656: *** free: at 'ltoken.c:320' pnt '0x83d3800|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25657: *** free: at 'ltoken.c:320' pnt '0x83d3b40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25658: *** free: at 'ltoken.c:320' pnt '0x83d3e80|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25659: *** free: at 'ltoken.c:320' pnt '0x83d4400|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25660: *** free: at 'ltoken.c:320' pnt '0x83d4940|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25661: *** free: at 'ltoken.c:320' pnt '0x83d4e00|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25662: *** free: at 'ltoken.c:320' pnt '0x83d8500|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25663: *** free: at 'ltoken.c:320' pnt '0x83d8680|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25664: *** free: at 'ltoken.c:320' pnt '0x83d8a40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25665: *** free: at 'ltoken.c:320' pnt '0x83d8dc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25666: *** free: at 'ltoken.c:320' pnt '0x83dc040|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25667: *** free: at 'ltoken.c:320' pnt '0x83dc2c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25668: *** free: at 'ltoken.c:320' pnt '0x83dc540|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25669: *** free: at 'ltoken.c:320' pnt '0x83dc7c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25670: *** free: at 'ltoken.c:320' pnt '0x83dca40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25671: *** free: at 'ltoken.c:320' pnt '0x83dccc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25672: *** free: at 'ltoken.c:320' pnt '0x83dd000|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25673: *** free: at 'ltoken.c:320' pnt '0x83dd340|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25674: *** free: at 'ltoken.c:320' pnt '0x83dd740|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25675: *** free: at 'ltoken.c:320' pnt '0x83ddbc0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25676: *** free: at 'ltoken.c:320' pnt '0x83dde40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25677: *** free: at 'ltoken.c:320' pnt '0x83e10c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25678: *** free: at 'ltoken.c:320' pnt '0x83e1400|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25679: *** free: at 'ltoken.c:320' pnt '0x83e1680|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25680: *** free: at 'ltoken.c:320' pnt '0x83e19c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25681: *** free: at 'ltoken.c:320' pnt '0x83e1c40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25682: *** free: at 'ltoken.c:320' pnt '0x83e1e40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25683: *** free: at 'ltoken.c:320' pnt '0x83e5040|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25684: *** free: at 'ltoken.c:320' pnt '0x83e5240|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25685: *** free: at 'ltoken.c:320' pnt '0x83e5440|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25686: *** free: at 'ltoken.c:320' pnt '0x83e5640|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25687: *** free: at 'ltoken.c:320' pnt '0x83e5840|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25688: *** free: at 'ltoken.c:320' pnt '0x83e5a40|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25689: *** free: at 'tokentable.c:177' pnt '0x83a8000|s2': size 4096, alloced at 'tokentable.c:129'
-991866208: 25690: *** free: at 'symtable.c:182' pnt '0x83a1e60|s2': size 4, alloced at 'symtable.c:245'
-991866208: 25691: *** free: at 'ltoken.c:320' pnt '0x83b6200|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 25692: *** free: at 'symtable.c:177' pnt '0x83b3ca0|s2': size 20, alloced at 'abstract.c:111'
-991866208: 25693: *** free: at 'ltoken.c:320' pnt '0x83b6240|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25694: *** free: at 'symtable.c:177' pnt '0x83b81a0|s2': size 20, alloced at 'abstract.c:218'
-991866208: 25695: *** free: at 'ltoken.c:320' pnt '0x83b63c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25696: *** free: at 'symtable.c:128' pnt '0x83b8440|s2': size 16, alloced at 'symtable.c:133'
-991866208: 25697: *** free: at 'ltoken.c:320' pnt '0x83b6400|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25698: *** free: at 'symtable.c:128' pnt '0x83b8460|s2': size 16, alloced at 'symtable.c:133'
-991866208: 25699: *** free: at 'symtable.c:162' pnt '0x83b1000|s2': size 800, alloced at 'symtable.c:1625'
-991866208: 25700: checking heap
-991866208: 25700: *** free: at 'symtable.c:163' pnt '0x83a1de0|s2': size 16, alloced at 'symtable.c:253'
-991866208: 25701: *** free: at 'ltokenList.c:228' pnt '0x83d0d20|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25702: *** free: at 'ltokenList.c:229' pnt '0x83d0d00|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25703: *** free: at 'ltoken.c:320' pnt '0x83d3e00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25704: *** free: at 'ltoken.c:320' pnt '0x83d3d40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25705: *** free: at 'abstract.c:5728' pnt '0x83d0d40|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25706: *** free: at 'sigNodeSet.c:219' pnt '0x83d0de0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25707: *** free: at 'sigNodeSet.c:220' pnt '0x83d0dc0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25708: *** free: at 'symtable.c:1760' pnt '0x83d0da0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25709: *** free: at 'symtable.c:1770' pnt '0x83d0e00|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25710: *** free: at 'ltokenList.c:228' pnt '0x83d0ee0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25711: *** free: at 'ltokenList.c:229' pnt '0x83d0ec0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25712: *** free: at 'ltoken.c:320' pnt '0x83d4000|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25713: *** free: at 'ltoken.c:320' pnt '0x83d3fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25714: *** free: at 'abstract.c:5728' pnt '0x83d0f00|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25715: *** free: at 'ltokenList.c:228' pnt '0x83d6060|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25716: *** free: at 'ltokenList.c:229' pnt '0x83d6040|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25717: *** free: at 'ltoken.c:320' pnt '0x83d41c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25718: *** free: at 'ltoken.c:320' pnt '0x83d4180|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25719: *** free: at 'abstract.c:5728' pnt '0x83d6080|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25720: *** free: at 'sigNodeSet.c:219' pnt '0x83d0fa0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25721: *** free: at 'sigNodeSet.c:220' pnt '0x83d0f80|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25722: *** free: at 'symtable.c:1760' pnt '0x83d0f60|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25723: *** free: at 'symtable.c:1770' pnt '0x83d0fc0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25724: *** free: at 'ltokenList.c:228' pnt '0x83d6280|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25725: *** free: at 'ltokenList.c:229' pnt '0x83d6260|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25726: *** free: at 'ltoken.c:320' pnt '0x83d4580|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25727: *** free: at 'ltoken.c:320' pnt '0x83d4540|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25728: *** free: at 'abstract.c:5728' pnt '0x83d61c0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25729: *** free: at 'ltokenList.c:228' pnt '0x83d63c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25730: *** free: at 'ltokenList.c:229' pnt '0x83d63a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25731: *** free: at 'ltoken.c:320' pnt '0x83d46c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25732: *** free: at 'ltoken.c:320' pnt '0x83d4680|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25733: *** free: at 'abstract.c:5728' pnt '0x83d63e0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25734: *** free: at 'sigNodeSet.c:219' pnt '0x83d62c0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25735: *** free: at 'sigNodeSet.c:220' pnt '0x83d61a0|s4': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25736: *** free: at 'symtable.c:1760' pnt '0x83d62a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25737: *** free: at 'symtable.c:1770' pnt '0x83d62e0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25738: *** free: at 'ltokenList.c:228' pnt '0x83bd8a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25739: *** free: at 'ltokenList.c:229' pnt '0x83bd880|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25740: *** free: at 'ltoken.c:320' pnt '0x83bfd80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25741: *** free: at 'ltoken.c:320' pnt '0x83bf900|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25742: *** free: at 'abstract.c:5728' pnt '0x83bd8c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25743: *** free: at 'ltokenList.c:228' pnt '0x83bdaa0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25744: *** free: at 'ltokenList.c:229' pnt '0x83bda80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25745: *** free: at 'ltoken.c:320' pnt '0x83c0280|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25746: *** free: at 'ltoken.c:320' pnt '0x83c0180|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25747: *** free: at 'abstract.c:5728' pnt '0x83bdac0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25748: *** free: at 'ltokenList.c:228' pnt '0x83bdbc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25749: *** free: at 'ltokenList.c:229' pnt '0x83bdba0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25750: *** free: at 'ltoken.c:320' pnt '0x83c0740|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25751: *** free: at 'ltoken.c:320' pnt '0x83c02c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25752: *** free: at 'abstract.c:5728' pnt '0x83bdbe0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25753: *** free: at 'ltokenList.c:228' pnt '0x83bdda0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25754: *** free: at 'ltokenList.c:229' pnt '0x83bdd80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25755: *** free: at 'ltoken.c:320' pnt '0x83c2040|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25756: *** free: at 'ltoken.c:320' pnt '0x83c0780|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 25757: *** free: at 'abstract.c:5728' pnt '0x83bddc0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25758: *** free: at 'ltokenList.c:228' pnt '0x83bdec0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25759: *** free: at 'ltokenList.c:229' pnt '0x83bdea0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25760: *** free: at 'ltoken.c:320' pnt '0x83c2500|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25761: *** free: at 'ltoken.c:320' pnt '0x83c2080|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25762: *** free: at 'abstract.c:5728' pnt '0x83bdee0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25763: *** free: at 'sigNodeSet.c:219' pnt '0x83bd980|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25764: *** free: at 'sigNodeSet.c:220' pnt '0x83bd960|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25765: *** free: at 'symtable.c:1760' pnt '0x83bd940|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25766: *** free: at 'symtable.c:1770' pnt '0x83bd9a0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25767: *** free: at 'ltokenList.c:228' pnt '0x83c9cc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25768: *** free: at 'ltokenList.c:229' pnt '0x83c9b00|s6': size 16, alloced at 'ltokenList.c:38'
-991866208: 25769: *** free: at 'ltoken.c:320' pnt '0x83ccb80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25770: *** free: at 'ltoken.c:320' pnt '0x83cc8c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25771: *** free: at 'abstract.c:5728' pnt '0x83c9c00|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25772: *** free: at 'ltokenList.c:228' pnt '0x83c9ea0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25773: *** free: at 'ltokenList.c:229' pnt '0x83c9e80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25774: *** free: at 'ltoken.c:320' pnt '0x83ccf00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25775: *** free: at 'ltoken.c:320' pnt '0x83cce40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25776: *** free: at 'abstract.c:5728' pnt '0x83c9ec0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25777: *** free: at 'sigNodeSet.c:219' pnt '0x83c9d80|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25778: *** free: at 'sigNodeSet.c:220' pnt '0x83c9d60|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25779: *** free: at 'symtable.c:1760' pnt '0x83c9d40|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25780: *** free: at 'symtable.c:1770' pnt '0x83c9da0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25781: *** free: at 'ltokenList.c:228' pnt '0x83d00c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25782: *** free: at 'ltokenList.c:229' pnt '0x83d0020|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25783: *** free: at 'ltoken.c:320' pnt '0x83ce4c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25784: *** free: at 'ltoken.c:320' pnt '0x83ce100|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25785: *** free: at 'abstract.c:5728' pnt '0x83d00e0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25786: *** free: at 'ltokenList.c:228' pnt '0x83d02c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25787: *** free: at 'ltokenList.c:229' pnt '0x83d02a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25788: *** free: at 'ltoken.c:320' pnt '0x83ce840|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25789: *** free: at 'ltoken.c:320' pnt '0x83ce780|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25790: *** free: at 'abstract.c:5728' pnt '0x83d02e0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25791: *** free: at 'sigNodeSet.c:219' pnt '0x83d01a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25792: *** free: at 'sigNodeSet.c:220' pnt '0x83d0180|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25793: *** free: at 'symtable.c:1760' pnt '0x83d0160|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25794: *** free: at 'symtable.c:1770' pnt '0x83d01c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25795: *** free: at 'ltokenList.c:228' pnt '0x83d6aa0|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 25796: *** free: at 'ltokenList.c:229' pnt '0x83d6a80|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25797: *** free: at 'ltoken.c:320' pnt '0x83d8640|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25798: *** free: at 'ltoken.c:320' pnt '0x83d84c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25799: *** free: at 'abstract.c:5728' pnt '0x83d6a20|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25800: checking heap
-991866208: 25800: *** free: at 'sigNodeSet.c:219' pnt '0x83d6ba0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25801: *** free: at 'sigNodeSet.c:220' pnt '0x83d6b80|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25802: *** free: at 'symtable.c:1760' pnt '0x83d6b60|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25803: *** free: at 'symtable.c:1770' pnt '0x83d6bc0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25804: *** free: at 'ltokenList.c:228' pnt '0x83da0a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25805: *** free: at 'ltokenList.c:229' pnt '0x83da080|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25806: *** free: at 'ltoken.c:320' pnt '0x83d4d80|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25807: *** free: at 'ltoken.c:320' pnt '0x83d8fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25808: *** free: at 'abstract.c:5728' pnt '0x83da0c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25809: *** free: at 'sigNodeSet.c:219' pnt '0x83da160|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25810: *** free: at 'sigNodeSet.c:220' pnt '0x83da140|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25811: *** free: at 'symtable.c:1760' pnt '0x83da120|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25812: *** free: at 'symtable.c:1770' pnt '0x83da180|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25813: *** free: at 'ltokenList.c:228' pnt '0x83d64e0|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 25814: *** free: at 'ltokenList.c:229' pnt '0x83d64c0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25815: *** free: at 'ltoken.c:320' pnt '0x83d4880|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 25816: *** free: at 'ltoken.c:320' pnt '0x83d4ac0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25817: *** free: at 'abstract.c:5728' pnt '0x83d6500|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25818: *** free: at 'sigNodeSet.c:219' pnt '0x83d6660|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25819: *** free: at 'sigNodeSet.c:220' pnt '0x83d6640|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25820: *** free: at 'symtable.c:1760' pnt '0x83d6620|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25821: *** free: at 'symtable.c:1770' pnt '0x83d6680|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25822: *** free: at 'ltokenList.c:228' pnt '0x83da260|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25823: *** free: at 'ltokenList.c:229' pnt '0x83da240|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25824: *** free: at 'ltoken.c:320' pnt '0x83dc240|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25825: *** free: at 'ltoken.c:320' pnt '0x83dc1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25826: *** free: at 'abstract.c:5728' pnt '0x83da280|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25827: *** free: at 'sigNodeSet.c:219' pnt '0x83da320|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25828: *** free: at 'sigNodeSet.c:220' pnt '0x83da300|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25829: *** free: at 'symtable.c:1760' pnt '0x83da2e0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25830: *** free: at 'symtable.c:1770' pnt '0x83da340|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25831: *** free: at 'ltokenList.c:228' pnt '0x83da420|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25832: *** free: at 'ltokenList.c:229' pnt '0x83da400|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25833: *** free: at 'ltoken.c:320' pnt '0x83dc4c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25834: *** free: at 'ltoken.c:320' pnt '0x83dc440|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25835: *** free: at 'abstract.c:5728' pnt '0x83da440|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25836: *** free: at 'sigNodeSet.c:219' pnt '0x83da4e0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25837: *** free: at 'sigNodeSet.c:220' pnt '0x83da4c0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25838: *** free: at 'symtable.c:1760' pnt '0x83da4a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25839: *** free: at 'symtable.c:1770' pnt '0x83da500|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25840: *** free: at 'ltokenList.c:228' pnt '0x83da5e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25841: *** free: at 'ltokenList.c:229' pnt '0x83da5c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25842: *** free: at 'ltoken.c:320' pnt '0x83dc740|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25843: *** free: at 'ltoken.c:320' pnt '0x83dc6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25844: *** free: at 'abstract.c:5728' pnt '0x83da600|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25845: *** free: at 'sigNodeSet.c:219' pnt '0x83da6a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25846: *** free: at 'sigNodeSet.c:220' pnt '0x83da680|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25847: *** free: at 'symtable.c:1760' pnt '0x83da660|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25848: *** free: at 'symtable.c:1770' pnt '0x83da6c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25849: *** free: at 'ltokenList.c:228' pnt '0x83da7a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25850: *** free: at 'ltokenList.c:229' pnt '0x83da780|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25851: *** free: at 'ltoken.c:320' pnt '0x83dc9c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25852: *** free: at 'ltoken.c:320' pnt '0x83dc940|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25853: *** free: at 'abstract.c:5728' pnt '0x83da7c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25854: *** free: at 'sigNodeSet.c:219' pnt '0x83da860|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25855: *** free: at 'sigNodeSet.c:220' pnt '0x83da840|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25856: *** free: at 'symtable.c:1760' pnt '0x83da820|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25857: *** free: at 'symtable.c:1770' pnt '0x83da880|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25858: *** free: at 'ltokenList.c:228' pnt '0x83da960|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25859: *** free: at 'ltokenList.c:229' pnt '0x83da940|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25860: *** free: at 'ltoken.c:320' pnt '0x83dcc40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25861: *** free: at 'ltoken.c:320' pnt '0x83dcbc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25862: *** free: at 'abstract.c:5728' pnt '0x83da980|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25863: *** free: at 'sigNodeSet.c:219' pnt '0x83daa20|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25864: *** free: at 'sigNodeSet.c:220' pnt '0x83daa00|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25865: *** free: at 'symtable.c:1760' pnt '0x83da9e0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25866: *** free: at 'symtable.c:1770' pnt '0x83daa40|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25867: *** free: at 'ltokenList.c:228' pnt '0x83d6860|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25868: *** free: at 'ltokenList.c:229' pnt '0x83d6760|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 25869: *** free: at 'ltoken.c:320' pnt '0x83d8100|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25870: *** free: at 'ltoken.c:320' pnt '0x83d8040|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25871: *** free: at 'abstract.c:5728' pnt '0x83d67a0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 25872: *** free: at 'sigNodeSet.c:219' pnt '0x83d6920|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25873: *** free: at 'sigNodeSet.c:220' pnt '0x83d6900|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25874: *** free: at 'symtable.c:1760' pnt '0x83d68e0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25875: *** free: at 'symtable.c:1770' pnt '0x83d6940|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25876: *** free: at 'ltokenList.c:228' pnt '0x83dab20|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25877: *** free: at 'ltokenList.c:229' pnt '0x83dab00|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25878: *** free: at 'ltoken.c:320' pnt '0x83dcf80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25879: *** free: at 'ltoken.c:320' pnt '0x83dcec0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25880: *** free: at 'abstract.c:5728' pnt '0x83dab40|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25881: *** free: at 'sigNodeSet.c:219' pnt '0x83dabe0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25882: *** free: at 'sigNodeSet.c:220' pnt '0x83dabc0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25883: *** free: at 'symtable.c:1760' pnt '0x83daba0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25884: *** free: at 'symtable.c:1770' pnt '0x83dac00|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25885: *** free: at 'ltokenList.c:228' pnt '0x83b3d20|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25886: *** free: at 'ltokenList.c:229' pnt '0x83b3d00|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25887: *** free: at 'ltoken.c:320' pnt '0x83b5dc0|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 25888: *** free: at 'abstract.c:5728' pnt '0x83b3e20|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25889: *** free: at 'sigNodeSet.c:219' pnt '0x83b8140|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25890: *** free: at 'sigNodeSet.c:220' pnt '0x83b8120|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25891: *** free: at 'symtable.c:1760' pnt '0x83b8100|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25892: *** free: at 'symtable.c:1770' pnt '0x83b8160|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25893: *** free: at 'ltokenList.c:228' pnt '0x83dace0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25894: *** free: at 'ltokenList.c:229' pnt '0x83dacc0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25895: *** free: at 'ltoken.c:320' pnt '0x83dd2c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25896: *** free: at 'ltoken.c:320' pnt '0x83dd200|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25897: *** free: at 'abstract.c:5728' pnt '0x83dad00|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25898: *** free: at 'sigNodeSet.c:219' pnt '0x83dada0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25899: *** free: at 'sigNodeSet.c:220' pnt '0x83dad80|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25900: checking heap
-991866208: 25900: *** free: at 'symtable.c:1760' pnt '0x83dad60|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25901: *** free: at 'symtable.c:1770' pnt '0x83dadc0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25902: *** free: at 'ltokenList.c:228' pnt '0x83d6cc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25903: *** free: at 'ltokenList.c:229' pnt '0x83d6ca0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25904: *** free: at 'ltoken.c:320' pnt '0x83d8980|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25905: *** free: at 'ltoken.c:320' pnt '0x83d88c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25906: *** free: at 'abstract.c:5728' pnt '0x83d6ce0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25907: *** free: at 'sigNodeSet.c:219' pnt '0x83d6da0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25908: *** free: at 'sigNodeSet.c:220' pnt '0x83d6d80|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25909: *** free: at 'symtable.c:1760' pnt '0x83d6d60|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25910: *** free: at 'symtable.c:1770' pnt '0x83d6dc0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25911: *** free: at 'ltokenList.c:228' pnt '0x83daea0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25912: *** free: at 'ltokenList.c:229' pnt '0x83dae80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25913: *** free: at 'ltoken.c:320' pnt '0x83dd6c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25914: *** free: at 'ltoken.c:320' pnt '0x83dd5c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25915: *** free: at 'abstract.c:5728' pnt '0x83daec0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25916: *** free: at 'sigNodeSet.c:219' pnt '0x83daf60|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25917: *** free: at 'sigNodeSet.c:220' pnt '0x83daf40|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25918: *** free: at 'symtable.c:1760' pnt '0x83daf20|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25919: *** free: at 'symtable.c:1770' pnt '0x83daf80|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25920: *** free: at 'ltokenList.c:228' pnt '0x83d6ec0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25921: *** free: at 'ltokenList.c:229' pnt '0x83d6ea0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25922: *** free: at 'ltoken.c:320' pnt '0x83d8d40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25923: *** free: at 'ltoken.c:320' pnt '0x83d8c80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25924: *** free: at 'abstract.c:5728' pnt '0x83d6ee0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25925: *** free: at 'sigNodeSet.c:219' pnt '0x83d6fa0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25926: *** free: at 'sigNodeSet.c:220' pnt '0x83d6f80|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25927: *** free: at 'symtable.c:1760' pnt '0x83d6f60|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25928: *** free: at 'symtable.c:1770' pnt '0x83d6fc0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25929: *** free: at 'ltokenList.c:228' pnt '0x83df060|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25930: *** free: at 'ltokenList.c:229' pnt '0x83df040|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25931: *** free: at 'ltoken.c:320' pnt '0x83dd940|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25932: *** free: at 'ltoken.c:320' pnt '0x83dd8c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25933: *** free: at 'abstract.c:5728' pnt '0x83df080|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25934: *** free: at 'sigNodeSet.c:219' pnt '0x83df120|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25935: *** free: at 'sigNodeSet.c:220' pnt '0x83df100|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25936: *** free: at 'symtable.c:1760' pnt '0x83df0e0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25937: *** free: at 'symtable.c:1770' pnt '0x83df140|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25938: *** free: at 'ltokenList.c:228' pnt '0x83df3e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25939: *** free: at 'ltokenList.c:229' pnt '0x83df3c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25940: *** free: at 'ltoken.c:320' pnt '0x83dddc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25941: *** free: at 'ltoken.c:320' pnt '0x83ddd40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25942: *** free: at 'abstract.c:5728' pnt '0x83df400|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25943: *** free: at 'sigNodeSet.c:219' pnt '0x83df4a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25944: *** free: at 'sigNodeSet.c:220' pnt '0x83df480|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25945: *** free: at 'symtable.c:1760' pnt '0x83df460|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25946: *** free: at 'symtable.c:1770' pnt '0x83df4c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25947: *** free: at 'ltokenList.c:228' pnt '0x83df5a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25948: *** free: at 'ltokenList.c:229' pnt '0x83df580|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25949: *** free: at 'ltoken.c:320' pnt '0x83e1040|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25950: *** free: at 'ltoken.c:320' pnt '0x83ddfc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25951: *** free: at 'abstract.c:5728' pnt '0x83df5c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25952: *** free: at 'sigNodeSet.c:219' pnt '0x83df660|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25953: *** free: at 'sigNodeSet.c:220' pnt '0x83df640|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25954: *** free: at 'symtable.c:1760' pnt '0x83df620|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25955: *** free: at 'symtable.c:1770' pnt '0x83df680|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25956: *** free: at 'ltokenList.c:228' pnt '0x83df760|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25957: *** free: at 'ltokenList.c:229' pnt '0x83df740|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25958: *** free: at 'ltoken.c:320' pnt '0x83e1380|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25959: *** free: at 'ltoken.c:320' pnt '0x83e12c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25960: *** free: at 'abstract.c:5728' pnt '0x83df780|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25961: *** free: at 'sigNodeSet.c:219' pnt '0x83df820|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25962: *** free: at 'sigNodeSet.c:220' pnt '0x83df800|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25963: *** free: at 'symtable.c:1760' pnt '0x83df7e0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25964: *** free: at 'symtable.c:1770' pnt '0x83df840|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25965: *** free: at 'ltokenList.c:228' pnt '0x83df920|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25966: *** free: at 'ltokenList.c:229' pnt '0x83df900|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25967: *** free: at 'ltoken.c:320' pnt '0x83e1600|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25968: *** free: at 'ltoken.c:320' pnt '0x83e1580|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25969: *** free: at 'abstract.c:5728' pnt '0x83df940|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25970: *** free: at 'sigNodeSet.c:219' pnt '0x83df9e0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25971: *** free: at 'sigNodeSet.c:220' pnt '0x83df9c0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25972: *** free: at 'symtable.c:1760' pnt '0x83df9a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25973: *** free: at 'symtable.c:1770' pnt '0x83dfa00|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25974: *** free: at 'ltokenList.c:228' pnt '0x83dfae0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25975: *** free: at 'ltokenList.c:229' pnt '0x83dfac0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25976: *** free: at 'ltoken.c:320' pnt '0x83e1940|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25977: *** free: at 'ltoken.c:320' pnt '0x83e1880|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25978: *** free: at 'abstract.c:5728' pnt '0x83dfb00|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25979: *** free: at 'sigNodeSet.c:219' pnt '0x83dfba0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25980: *** free: at 'sigNodeSet.c:220' pnt '0x83dfb80|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25981: *** free: at 'symtable.c:1760' pnt '0x83dfb60|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25982: *** free: at 'symtable.c:1770' pnt '0x83dfbc0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25983: *** free: at 'ltokenList.c:228' pnt '0x83dfca0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25984: *** free: at 'ltokenList.c:229' pnt '0x83dfc80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25985: *** free: at 'ltoken.c:320' pnt '0x83e1bc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25986: *** free: at 'ltoken.c:320' pnt '0x83e1b40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25987: *** free: at 'abstract.c:5728' pnt '0x83dfcc0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25988: *** free: at 'sigNodeSet.c:219' pnt '0x83dfd60|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25989: *** free: at 'sigNodeSet.c:220' pnt '0x83dfd40|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25990: *** free: at 'symtable.c:1760' pnt '0x83dfd20|s2': size 8, alloced at 'symtable.c:329'
-991866208: 25991: *** free: at 'symtable.c:1770' pnt '0x83dfd80|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 25992: *** free: at 'ltokenList.c:228' pnt '0x83dfe60|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 25993: *** free: at 'ltokenList.c:229' pnt '0x83dfe40|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 25994: *** free: at 'ltoken.c:320' pnt '0x83e1dc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25995: *** free: at 'ltoken.c:320' pnt '0x83e1d80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 25996: *** free: at 'abstract.c:5728' pnt '0x83dfe80|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 25997: *** free: at 'sigNodeSet.c:219' pnt '0x83dff20|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 25998: *** free: at 'sigNodeSet.c:220' pnt '0x83dff00|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 25999: *** free: at 'symtable.c:1760' pnt '0x83dfee0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26000: checking heap
-991866208: 26000: *** free: at 'symtable.c:1770' pnt '0x83dff40|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26001: *** free: at 'ltokenList.c:228' pnt '0x83e3020|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26002: *** free: at 'ltokenList.c:229' pnt '0x83e3000|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26003: *** free: at 'ltoken.c:320' pnt '0x83e1fc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26004: *** free: at 'ltoken.c:320' pnt '0x83e1f80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26005: *** free: at 'abstract.c:5728' pnt '0x83e3040|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26006: *** free: at 'sigNodeSet.c:219' pnt '0x83e30e0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26007: *** free: at 'sigNodeSet.c:220' pnt '0x83e30c0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26008: *** free: at 'symtable.c:1760' pnt '0x83e30a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26009: *** free: at 'symtable.c:1770' pnt '0x83e3100|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26010: *** free: at 'ltokenList.c:228' pnt '0x83e31e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26011: *** free: at 'ltokenList.c:229' pnt '0x83e31c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26012: *** free: at 'ltoken.c:320' pnt '0x83e51c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26013: *** free: at 'ltoken.c:320' pnt '0x83e5180|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26014: *** free: at 'abstract.c:5728' pnt '0x83e3200|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26015: *** free: at 'sigNodeSet.c:219' pnt '0x83e32a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26016: *** free: at 'sigNodeSet.c:220' pnt '0x83e3280|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26017: *** free: at 'symtable.c:1760' pnt '0x83e3260|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26018: *** free: at 'symtable.c:1770' pnt '0x83e32c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26019: *** free: at 'ltokenList.c:228' pnt '0x83e33a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26020: *** free: at 'ltokenList.c:229' pnt '0x83e3380|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26021: *** free: at 'ltoken.c:320' pnt '0x83e53c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26022: *** free: at 'ltoken.c:320' pnt '0x83e5380|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26023: *** free: at 'abstract.c:5728' pnt '0x83e33c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26024: *** free: at 'sigNodeSet.c:219' pnt '0x83e3460|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26025: *** free: at 'sigNodeSet.c:220' pnt '0x83e3440|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26026: *** free: at 'symtable.c:1760' pnt '0x83e3420|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26027: *** free: at 'symtable.c:1770' pnt '0x83e3480|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26028: *** free: at 'ltokenList.c:228' pnt '0x83e3560|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26029: *** free: at 'ltokenList.c:229' pnt '0x83e3540|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26030: *** free: at 'ltoken.c:320' pnt '0x83e55c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26031: *** free: at 'ltoken.c:320' pnt '0x83e5580|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26032: *** free: at 'abstract.c:5728' pnt '0x83e3580|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26033: *** free: at 'sigNodeSet.c:219' pnt '0x83e3620|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26034: *** free: at 'sigNodeSet.c:220' pnt '0x83e3600|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26035: *** free: at 'symtable.c:1760' pnt '0x83e35e0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26036: *** free: at 'symtable.c:1770' pnt '0x83e3640|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26037: *** free: at 'ltokenList.c:228' pnt '0x83e3720|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26038: *** free: at 'ltokenList.c:229' pnt '0x83e3700|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26039: *** free: at 'ltoken.c:320' pnt '0x83e57c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26040: *** free: at 'ltoken.c:320' pnt '0x83e5780|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26041: *** free: at 'abstract.c:5728' pnt '0x83e3740|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26042: *** free: at 'sigNodeSet.c:219' pnt '0x83e37e0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26043: *** free: at 'sigNodeSet.c:220' pnt '0x83e37c0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26044: *** free: at 'symtable.c:1760' pnt '0x83e37a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26045: *** free: at 'symtable.c:1770' pnt '0x83e3800|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26046: *** free: at 'ltokenList.c:228' pnt '0x83e38e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26047: *** free: at 'ltokenList.c:229' pnt '0x83e38c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26048: *** free: at 'ltoken.c:320' pnt '0x83e59c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26049: *** free: at 'ltoken.c:320' pnt '0x83e5980|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26050: *** free: at 'abstract.c:5728' pnt '0x83e3900|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26051: *** free: at 'sigNodeSet.c:219' pnt '0x83e39a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26052: *** free: at 'sigNodeSet.c:220' pnt '0x83e3980|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26053: *** free: at 'symtable.c:1760' pnt '0x83e3960|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26054: *** free: at 'symtable.c:1770' pnt '0x83e39c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26055: *** free: at 'ltokenList.c:228' pnt '0x83e3aa0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26056: *** free: at 'ltokenList.c:229' pnt '0x83e3a80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26057: *** free: at 'ltoken.c:320' pnt '0x83e5bc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26058: *** free: at 'ltoken.c:320' pnt '0x83e5b80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26059: *** free: at 'abstract.c:5728' pnt '0x83e3ac0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26060: *** free: at 'sigNodeSet.c:219' pnt '0x83e3b60|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26061: *** free: at 'sigNodeSet.c:220' pnt '0x83e3b40|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26062: *** free: at 'symtable.c:1760' pnt '0x83e3b20|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26063: *** free: at 'symtable.c:1770' pnt '0x83e3b80|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26064: *** free: at 'ltokenList.c:228' pnt '0x83c98e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26065: *** free: at 'ltokenList.c:229' pnt '0x83c9820|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26066: *** free: at 'ltoken.c:320' pnt '0x83cc1c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26067: *** free: at 'ltoken.c:320' pnt '0x83cc100|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26068: *** free: at 'abstract.c:5728' pnt '0x83c9740|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 26069: *** free: at 'ltokenList.c:228' pnt '0x83c9ac0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26070: *** free: at 'ltokenList.c:229' pnt '0x83c9aa0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26071: *** free: at 'ltoken.c:320' pnt '0x83cc540|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26072: *** free: at 'ltoken.c:320' pnt '0x83cc480|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26073: *** free: at 'abstract.c:5728' pnt '0x83c9ae0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26074: *** free: at 'sigNodeSet.c:219' pnt '0x83c99a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26075: *** free: at 'sigNodeSet.c:220' pnt '0x83c9980|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26076: *** free: at 'symtable.c:1760' pnt '0x83c9960|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26077: *** free: at 'symtable.c:1770' pnt '0x83c99c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26078: *** free: at 'ltokenList.c:228' pnt '0x83b8200|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26079: *** free: at 'ltokenList.c:229' pnt '0x83b81e0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26080: *** free: at 'ltoken.c:320' pnt '0x83b6280|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 26081: *** free: at 'abstract.c:5728' pnt '0x83b8220|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26082: *** free: at 'sigNodeSet.c:219' pnt '0x83b82c0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26083: *** free: at 'sigNodeSet.c:220' pnt '0x83b82a0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26084: *** free: at 'symtable.c:1760' pnt '0x83b8280|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26085: *** free: at 'symtable.c:1770' pnt '0x83b82e0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26086: *** free: at 'ltokenList.c:228' pnt '0x83b8340|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26087: *** free: at 'ltokenList.c:229' pnt '0x83b8320|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26088: *** free: at 'ltoken.c:320' pnt '0x83b6340|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26089: *** free: at 'abstract.c:5728' pnt '0x83b8360|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26090: *** free: at 'sigNodeSet.c:219' pnt '0x83b83e0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26091: *** free: at 'sigNodeSet.c:220' pnt '0x83b83c0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26092: *** free: at 'symtable.c:1760' pnt '0x83b83a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26093: *** free: at 'symtable.c:1770' pnt '0x83b8400|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26094: *** free: at 'ltokenList.c:228' pnt '0x83b3e80|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26095: *** free: at 'ltokenList.c:229' pnt '0x83b3e60|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26096: *** free: at 'ltoken.c:320' pnt '0x83b6080|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26097: *** free: at 'abstract.c:5728' pnt '0x83b3ea0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26098: *** free: at 'sigNodeSet.c:219' pnt '0x83b3f20|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26099: *** free: at 'sigNodeSet.c:220' pnt '0x83b3f00|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26100: checking heap
-991866208: 26100: *** free: at 'symtable.c:1760' pnt '0x83b3ee0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26101: *** free: at 'symtable.c:1770' pnt '0x83b3f40|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26102: *** free: at 'ltokenList.c:228' pnt '0x83b3fc0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26103: *** free: at 'ltokenList.c:229' pnt '0x83b3fa0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26104: *** free: at 'ltoken.c:320' pnt '0x83b6140|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26105: *** free: at 'abstract.c:5728' pnt '0x83b3fe0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26106: *** free: at 'sigNodeSet.c:219' pnt '0x83b8060|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26107: *** free: at 'sigNodeSet.c:220' pnt '0x83b8040|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26108: *** free: at 'symtable.c:1760' pnt '0x83b8020|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26109: *** free: at 'symtable.c:1770' pnt '0x83b8080|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26110: *** free: at 'ltokenList.c:228' pnt '0x83b3ce0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26111: *** free: at 'ltokenList.c:229' pnt '0x83b3cc0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26112: *** free: at 'ltoken.c:320' pnt '0x83b6040|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26113: *** free: at 'abstract.c:5728' pnt '0x83b3c20|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26114: *** free: at 'sigNodeSet.c:219' pnt '0x83b3de0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26115: *** free: at 'sigNodeSet.c:220' pnt '0x83b3dc0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26116: *** free: at 'symtable.c:1760' pnt '0x83b3da0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26117: *** free: at 'symtable.c:1770' pnt '0x83b3e00|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26118: *** free: at 'ltokenList.c:228' pnt '0x83b86a0|s12': size 16, alloced at 'ltokenList.c:43'
-991866208: 26119: *** free: at 'ltokenList.c:229' pnt '0x83b8960|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26120: *** free: at 'ltoken.c:320' pnt '0x83ba540|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26121: *** free: at 'ltoken.c:320' pnt '0x83ba2c0|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26122: *** free: at 'abstract.c:5728' pnt '0x83b85e0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 26123: *** free: at 'ltokenList.c:228' pnt '0x83b8c00|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26124: *** free: at 'ltokenList.c:229' pnt '0x83b8be0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26125: *** free: at 'ltoken.c:320' pnt '0x83ba8c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26126: *** free: at 'ltoken.c:320' pnt '0x83ba800|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26127: *** free: at 'abstract.c:5728' pnt '0x83b8c20|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26128: *** free: at 'ltokenList.c:228' pnt '0x83b8c40|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26129: *** free: at 'ltokenList.c:229' pnt '0x83b8d40|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26130: *** free: at 'ltoken.c:320' pnt '0x83bac40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26131: *** free: at 'ltoken.c:320' pnt '0x83babc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26132: *** free: at 'abstract.c:5728' pnt '0x83b8c60|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26133: *** free: at 'ltokenList.c:228' pnt '0x83b8f00|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26134: *** free: at 'ltokenList.c:229' pnt '0x83b8d80|s6': size 16, alloced at 'ltokenList.c:38'
-991866208: 26135: *** free: at 'ltoken.c:320' pnt '0x83bb300|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26136: *** free: at 'ltoken.c:320' pnt '0x83bb240|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26137: *** free: at 'abstract.c:5728' pnt '0x83b8900|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 26138: *** free: at 'ltokenList.c:228' pnt '0x83bd040|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26139: *** free: at 'ltokenList.c:229' pnt '0x83bd020|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26140: *** free: at 'ltoken.c:320' pnt '0x83bb680|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26141: *** free: at 'ltoken.c:320' pnt '0x83bb600|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26142: *** free: at 'abstract.c:5728' pnt '0x83bd060|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26143: *** free: at 'sigNodeSet.c:219' pnt '0x83b8ae0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26144: *** free: at 'sigNodeSet.c:220' pnt '0x83b8ac0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26145: *** free: at 'symtable.c:1760' pnt '0x83b8aa0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26146: *** free: at 'symtable.c:1770' pnt '0x83b8b00|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26147: *** free: at 'ltokenList.c:228' pnt '0x83bd1a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26148: *** free: at 'ltokenList.c:229' pnt '0x83bd180|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26149: *** free: at 'ltoken.c:320' pnt '0x83bb9c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26150: *** free: at 'ltoken.c:320' pnt '0x83bb940|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26151: *** free: at 'abstract.c:5728' pnt '0x83bd0a0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26152: *** free: at 'ltokenList.c:228' pnt '0x83bd360|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26153: *** free: at 'ltokenList.c:229' pnt '0x83bd340|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26154: *** free: at 'ltoken.c:320' pnt '0x83bbd40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26155: *** free: at 'ltoken.c:320' pnt '0x83bbcc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26156: *** free: at 'abstract.c:5728' pnt '0x83bd380|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26157: *** free: at 'ltokenList.c:228' pnt '0x83bd4c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26158: *** free: at 'ltokenList.c:229' pnt '0x83bd4a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26159: *** free: at 'ltoken.c:320' pnt '0x83b6f00|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 26160: *** free: at 'ltoken.c:320' pnt '0x83bac80|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 26161: *** free: at 'abstract.c:5728' pnt '0x83bd3c0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26162: *** free: at 'ltokenList.c:228' pnt '0x83bd5e0|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26163: *** free: at 'ltokenList.c:229' pnt '0x83bd5c0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26164: *** free: at 'ltoken.c:320' pnt '0x83bf5c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26165: *** free: at 'ltoken.c:320' pnt '0x83bf340|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26166: *** free: at 'abstract.c:5728' pnt '0x83bd4e0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 26167: *** free: at 'ltokenList.c:228' pnt '0x83bd6c0|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26168: *** free: at 'ltokenList.c:229' pnt '0x83bd6a0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26169: *** free: at 'ltoken.c:320' pnt '0x83bf8c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26170: *** free: at 'ltoken.c:320' pnt '0x83bf600|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26171: *** free: at 'abstract.c:5728' pnt '0x83bd7a0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26172: *** free: at 'sigNodeSet.c:219' pnt '0x83bd240|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26173: *** free: at 'sigNodeSet.c:220' pnt '0x83bd220|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26174: *** free: at 'symtable.c:1760' pnt '0x83bd200|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26175: *** free: at 'symtable.c:1770' pnt '0x83bd260|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26176: *** free: at 'ltokenList.c:228' pnt '0x83e3c80|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26177: *** free: at 'ltokenList.c:229' pnt '0x83e3ce0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26178: *** free: at 'ltoken.c:320' pnt '0x83e5f80|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26179: *** free: at 'ltoken.c:320' pnt '0x83e6000|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26180: *** free: at 'abstract.c:5728' pnt '0x83e3c60|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26181: *** free: at 'sigNodeSet.c:219' pnt '0x83e3e20|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26182: *** free: at 'sigNodeSet.c:220' pnt '0x83e3e00|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26183: *** free: at 'symtable.c:1760' pnt '0x83e3de0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26184: *** free: at 'symtable.c:1770' pnt '0x83e3e40|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26185: *** free: at 'ltokenList.c:228' pnt '0x83b36c0|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26186: *** free: at 'ltokenList.c:229' pnt '0x83b36a0|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26187: *** free: at 'ltoken.c:320' pnt '0x83b59c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 26188: *** free: at 'abstract.c:5728' pnt '0x83b36e0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26189: *** free: at 'sigNodeSet.c:219' pnt '0x83b3720|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26190: *** free: at 'sigNodeSet.c:220' pnt '0x83b3700|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26191: *** free: at 'symtable.c:1760' pnt '0x83b3560|s4': size 8, alloced at 'symtable.c:329'
-991866208: 26192: *** free: at 'symtable.c:1770' pnt '0x83b3740|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26193: *** free: at 'ltokenList.c:228' pnt '0x83b8f20|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26194: *** free: at 'ltokenList.c:229' pnt '0x83b8f40|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26195: *** free: at 'ltoken.c:320' pnt '0x83c2840|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26196: *** free: at 'ltoken.c:320' pnt '0x83c27c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26197: *** free: at 'abstract.c:5728' pnt '0x83bdf20|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26198: *** free: at 'sigNodeSet.c:219' pnt '0x83c4080|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26199: *** free: at 'sigNodeSet.c:220' pnt '0x83c4060|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26200: checking heap
-991866208: 26200: *** free: at 'symtable.c:1760' pnt '0x83c4040|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26201: *** free: at 'symtable.c:1770' pnt '0x83c40a0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26202: *** free: at 'ltokenList.c:228' pnt '0x83b3240|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26203: *** free: at 'ltokenList.c:229' pnt '0x83b3360|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26204: *** free: at 'ltoken.c:320' pnt '0x83b5580|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 26205: *** free: at 'abstract.c:5728' pnt '0x83b3380|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26206: *** free: at 'ltokenList.c:228' pnt '0x83b35a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26207: *** free: at 'ltokenList.c:229' pnt '0x83b3580|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26208: *** free: at 'ltoken.c:320' pnt '0x83b57c0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 26209: *** free: at 'abstract.c:5728' pnt '0x83b35c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26210: *** free: at 'sigNodeSet.c:219' pnt '0x83b3400|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26211: *** free: at 'sigNodeSet.c:220' pnt '0x83b33e0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26212: *** free: at 'symtable.c:1760' pnt '0x83b33c0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26213: *** free: at 'symtable.c:1770' pnt '0x83b3420|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26214: *** free: at 'ltokenList.c:228' pnt '0x83c41a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26215: *** free: at 'ltokenList.c:229' pnt '0x83c4180|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26216: *** free: at 'ltoken.c:320' pnt '0x83c2bc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26217: *** free: at 'ltoken.c:320' pnt '0x83c2b00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26218: *** free: at 'abstract.c:5728' pnt '0x83c41c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26219: *** free: at 'sigNodeSet.c:219' pnt '0x83c4280|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26220: *** free: at 'sigNodeSet.c:220' pnt '0x83c4260|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26221: *** free: at 'symtable.c:1760' pnt '0x83c4240|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26222: *** free: at 'symtable.c:1770' pnt '0x83c42a0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26223: *** free: at 'ltokenList.c:228' pnt '0x83c43a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26224: *** free: at 'ltokenList.c:229' pnt '0x83c4380|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26225: *** free: at 'ltoken.c:320' pnt '0x83c2f40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26226: *** free: at 'ltoken.c:320' pnt '0x83c2e80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26227: *** free: at 'abstract.c:5728' pnt '0x83c43c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26228: *** free: at 'ltokenList.c:228' pnt '0x83c45a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26229: *** free: at 'ltokenList.c:229' pnt '0x83c4580|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26230: *** free: at 'ltoken.c:320' pnt '0x83c62c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26231: *** free: at 'ltoken.c:320' pnt '0x83c6200|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26232: *** free: at 'abstract.c:5728' pnt '0x83c45c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26233: *** free: at 'sigNodeSet.c:219' pnt '0x83c4480|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26234: *** free: at 'sigNodeSet.c:220' pnt '0x83c4460|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26235: *** free: at 'symtable.c:1760' pnt '0x83c4440|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26236: *** free: at 'symtable.c:1770' pnt '0x83c44a0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26237: *** free: at 'ltokenList.c:228' pnt '0x83c4600|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 26238: *** free: at 'ltokenList.c:229' pnt '0x83c4780|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26239: *** free: at 'ltoken.c:320' pnt '0x83c68c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26240: *** free: at 'ltoken.c:320' pnt '0x83c6600|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26241: *** free: at 'abstract.c:5728' pnt '0x83c47a0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26242: *** free: at 'ltokenList.c:228' pnt '0x83c4980|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26243: *** free: at 'ltokenList.c:229' pnt '0x83c4960|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26244: *** free: at 'ltoken.c:320' pnt '0x83c6c40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26245: *** free: at 'ltoken.c:320' pnt '0x83c6b80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26246: *** free: at 'abstract.c:5728' pnt '0x83c49a0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26247: *** free: at 'sigNodeSet.c:219' pnt '0x83c4860|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26248: *** free: at 'sigNodeSet.c:220' pnt '0x83c4840|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26249: *** free: at 'symtable.c:1760' pnt '0x83c4820|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26250: *** free: at 'symtable.c:1770' pnt '0x83c4880|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26251: *** free: at 'ltokenList.c:228' pnt '0x83df220|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26252: *** free: at 'ltokenList.c:229' pnt '0x83df200|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26253: *** free: at 'ltoken.c:320' pnt '0x83ddb40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26254: *** free: at 'ltoken.c:320' pnt '0x83ddb00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26255: *** free: at 'abstract.c:5728' pnt '0x83df240|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26256: *** free: at 'sigNodeSet.c:219' pnt '0x83df2e0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26257: *** free: at 'sigNodeSet.c:220' pnt '0x83df2c0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26258: *** free: at 'symtable.c:1760' pnt '0x83df2a0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26259: *** free: at 'symtable.c:1770' pnt '0x83df300|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26260: *** free: at 'ltokenList.c:228' pnt '0x83b3a20|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26261: *** free: at 'ltokenList.c:229' pnt '0x83b3a00|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26262: *** free: at 'ltoken.c:320' pnt '0x83b5b80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26263: *** free: at 'abstract.c:5728' pnt '0x83b3a40|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26264: *** free: at 'sigNodeSet.c:219' pnt '0x83b3ae0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26265: *** free: at 'sigNodeSet.c:220' pnt '0x83b3ac0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26266: *** free: at 'symtable.c:1760' pnt '0x83b3aa0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26267: *** free: at 'symtable.c:1770' pnt '0x83b3b00|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26268: *** free: at 'ltokenList.c:228' pnt '0x83c4ee0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26269: *** free: at 'ltokenList.c:229' pnt '0x83c4ec0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26270: *** free: at 'ltoken.c:320' pnt '0x83c7740|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26271: *** free: at 'ltoken.c:320' pnt '0x83c76c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26272: *** free: at 'abstract.c:5728' pnt '0x83c4f00|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26273: *** free: at 'ltokenList.c:228' pnt '0x83c9240|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26274: *** free: at 'ltokenList.c:229' pnt '0x83c9220|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26275: *** free: at 'ltoken.c:320' pnt '0x83c7d40|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26276: *** free: at 'ltoken.c:320' pnt '0x83c7cc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26277: *** free: at 'abstract.c:5728' pnt '0x83c9260|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26278: *** free: at 'sigNodeSet.c:219' pnt '0x83c4fc0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26279: *** free: at 'sigNodeSet.c:220' pnt '0x83c4fa0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26280: *** free: at 'symtable.c:1760' pnt '0x83c4f80|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26281: *** free: at 'symtable.c:1770' pnt '0x83c4fe0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26282: *** free: at 'ltokenList.c:228' pnt '0x83b37c0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26283: *** free: at 'ltokenList.c:229' pnt '0x83b37a0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26284: *** free: at 'ltoken.c:320' pnt '0x83b5740|s4': size 36, alloced at 'ltoken.c:76'
-991866208: 26285: *** free: at 'abstract.c:5728' pnt '0x83b35e0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26286: *** free: at 'ltokenList.c:228' pnt '0x83b39e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26287: *** free: at 'ltokenList.c:229' pnt '0x83b39c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26288: *** free: at 'ltoken.c:320' pnt '0x83b5c80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26289: *** free: at 'abstract.c:5728' pnt '0x83b3b20|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26290: *** free: at 'ltokenList.c:228' pnt '0x83c95e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26291: *** free: at 'ltokenList.c:229' pnt '0x83c9460|s6': size 16, alloced at 'ltokenList.c:38'
-991866208: 26292: *** free: at 'ltoken.c:320' pnt '0x83cb7c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26293: *** free: at 'ltoken.c:320' pnt '0x83cb500|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26294: *** free: at 'abstract.c:5728' pnt '0x83c94a0|s6': size 16, alloced at 'abstract.c:1367'
-991866208: 26295: *** free: at 'ltokenList.c:228' pnt '0x83c9620|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26296: *** free: at 'ltokenList.c:229' pnt '0x83c9600|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26297: *** free: at 'ltoken.c:320' pnt '0x83cbb00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26298: *** free: at 'ltoken.c:320' pnt '0x83cb800|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26299: *** free: at 'abstract.c:5728' pnt '0x83c9700|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26300: checking heap
-991866208: 26300: *** free: at 'sigNodeSet.c:219' pnt '0x83b3840|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26301: *** free: at 'sigNodeSet.c:220' pnt '0x83b3820|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26302: *** free: at 'symtable.c:1760' pnt '0x83b3800|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26303: *** free: at 'symtable.c:1770' pnt '0x83b3860|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26304: *** free: at 'ltokenList.c:228' pnt '0x83b30e0|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26305: *** free: at 'ltokenList.c:229' pnt '0x83b30c0|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26306: *** free: at 'ltoken.c:320' pnt '0x83b5000|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26307: *** free: at 'abstract.c:5728' pnt '0x83b3100|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26308: *** free: at 'ltokenList.c:228' pnt '0x83b3200|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26309: *** free: at 'ltokenList.c:229' pnt '0x83b31e0|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26310: *** free: at 'ltoken.c:320' pnt '0x83b5140|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26311: *** free: at 'abstract.c:5728' pnt '0x83b3220|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26312: *** free: at 'ltokenList.c:228' pnt '0x83b3280|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26313: *** free: at 'ltokenList.c:229' pnt '0x83b3260|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26314: *** free: at 'ltoken.c:320' pnt '0x83b5240|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26315: *** free: at 'abstract.c:5728' pnt '0x83b32a0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26316: *** free: at 'ltokenList.c:228' pnt '0x83b3300|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26317: *** free: at 'ltokenList.c:229' pnt '0x83b32e0|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26318: *** free: at 'ltoken.c:320' pnt '0x83b5340|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26319: *** free: at 'abstract.c:5728' pnt '0x83b3320|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26320: *** free: at 'ltokenList.c:228' pnt '0x83b3b40|s4': size 16, alloced at 'ltokenList.c:56'
-991866208: 26321: *** free: at 'ltokenList.c:229' pnt '0x83b3b60|s4': size 16, alloced at 'ltokenList.c:52'
-991866208: 26322: *** free: at 'ltoken.c:320' pnt '0x83b5e80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26323: *** free: at 'abstract.c:5728' pnt '0x83b3c40|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26324: *** free: at 'ltokenList.c:228' pnt '0x83b3be0|s4': size 16, alloced at 'ltokenList.c:56'
-991866208: 26325: *** free: at 'ltokenList.c:229' pnt '0x83b3c00|s4': size 16, alloced at 'ltokenList.c:52'
-991866208: 26326: *** free: at 'ltoken.c:320' pnt '0x83b5f80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26327: *** free: at 'abstract.c:5728' pnt '0x83b3c80|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26328: *** free: at 'sigNodeSet.c:219' pnt '0x83b3180|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26329: *** free: at 'sigNodeSet.c:220' pnt '0x83b3160|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26330: *** free: at 'symtable.c:1760' pnt '0x83b3140|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26331: *** free: at 'symtable.c:1770' pnt '0x83b31a0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26332: *** free: at 'ltokenList.c:228' pnt '0x83b38e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26333: *** free: at 'ltokenList.c:229' pnt '0x83b38c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26334: *** free: at 'ltoken.c:320' pnt '0x83b5ac0|s2': size 36, alloced at 'ltoken.c:76'
-991866208: 26335: *** free: at 'abstract.c:5728' pnt '0x83b3900|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26336: *** free: at 'ltokenList.c:228' pnt '0x83b3ba0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26337: *** free: at 'ltokenList.c:229' pnt '0x83b3b80|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26338: *** free: at 'ltoken.c:320' pnt '0x83b5d00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26339: *** free: at 'abstract.c:5728' pnt '0x83b3bc0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26340: *** free: at 'ltokenList.c:228' pnt '0x83c90e0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26341: *** free: at 'ltokenList.c:229' pnt '0x83c90c0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26342: *** free: at 'ltoken.c:320' pnt '0x83c7ac0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26343: *** free: at 'ltoken.c:320' pnt '0x83c7a00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26344: *** free: at 'abstract.c:5728' pnt '0x83c9100|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26345: *** free: at 'ltokenList.c:228' pnt '0x83c9140|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 26346: *** free: at 'ltokenList.c:229' pnt '0x83c9120|s6': size 16, alloced at 'ltokenList.c:38'
-991866208: 26347: *** free: at 'ltoken.c:320' pnt '0x83c6f80|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26348: *** free: at 'ltoken.c:320' pnt '0x83c7b00|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 26349: *** free: at 'abstract.c:5728' pnt '0x83c9340|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26350: *** free: at 'sigNodeSet.c:219' pnt '0x83b3980|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26351: *** free: at 'sigNodeSet.c:220' pnt '0x83b3960|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26352: *** free: at 'symtable.c:1760' pnt '0x83b3940|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26353: *** free: at 'symtable.c:1770' pnt '0x83b39a0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26354: *** free: at 'ltokenList.c:228' pnt '0x83b3460|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26355: *** free: at 'ltokenList.c:229' pnt '0x83b3440|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26356: *** free: at 'ltoken.c:320' pnt '0x83b56c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26357: *** free: at 'abstract.c:5728' pnt '0x83b3480|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26358: *** free: at 'ltokenList.c:228' pnt '0x83b3620|s2': size 16, alloced at 'ltokenList.c:56'
-991866208: 26359: *** free: at 'ltokenList.c:229' pnt '0x83b3600|s2': size 16, alloced at 'ltokenList.c:52'
-991866208: 26360: *** free: at 'ltoken.c:320' pnt '0x83b5900|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26361: *** free: at 'abstract.c:5728' pnt '0x83b3640|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26362: *** free: at 'sigNodeSet.c:219' pnt '0x83b3500|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26363: *** free: at 'sigNodeSet.c:220' pnt '0x83b34e0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26364: *** free: at 'symtable.c:1760' pnt '0x83b34c0|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26365: *** free: at 'symtable.c:1770' pnt '0x83b3520|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26366: *** free: at 'ltokenList.c:228' pnt '0x83c49c0|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 26367: *** free: at 'ltokenList.c:229' pnt '0x83c4bc0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26368: *** free: at 'ltoken.c:320' pnt '0x83c7200|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26369: *** free: at 'ltoken.c:320' pnt '0x83c7180|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26370: *** free: at 'abstract.c:5728' pnt '0x83c4ac0|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26371: *** free: at 'sigNodeSet.c:219' pnt '0x83c4c00|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26372: *** free: at 'sigNodeSet.c:220' pnt '0x83c4be0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26373: *** free: at 'symtable.c:1760' pnt '0x83c4b00|s4': size 8, alloced at 'symtable.c:329'
-991866208: 26374: *** free: at 'symtable.c:1770' pnt '0x83c4c20|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26375: *** free: at 'ltokenList.c:228' pnt '0x83c4d00|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26376: *** free: at 'ltokenList.c:229' pnt '0x83c4ce0|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26377: *** free: at 'ltoken.c:320' pnt '0x83c7480|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26378: *** free: at 'ltoken.c:320' pnt '0x83c7400|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26379: *** free: at 'abstract.c:5728' pnt '0x83c4d20|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26380: *** free: at 'sigNodeSet.c:219' pnt '0x83c4dc0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26381: *** free: at 'sigNodeSet.c:220' pnt '0x83c4da0|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26382: *** free: at 'symtable.c:1760' pnt '0x83c4d80|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26383: *** free: at 'symtable.c:1770' pnt '0x83c4de0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26384: *** free: at 'ltokenList.c:228' pnt '0x83d0300|s6': size 16, alloced at 'ltokenList.c:43'
-991866208: 26385: *** free: at 'ltokenList.c:229' pnt '0x83d0500|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26386: *** free: at 'ltoken.c:320' pnt '0x83cedc0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26387: *** free: at 'ltoken.c:320' pnt '0x83ced80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26388: *** free: at 'abstract.c:5728' pnt '0x83d0400|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26389: *** free: at 'ltokenList.c:228' pnt '0x83d0640|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26390: *** free: at 'ltokenList.c:229' pnt '0x83d0620|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26391: *** free: at 'ltoken.c:320' pnt '0x83cef80|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26392: *** free: at 'ltoken.c:320' pnt '0x83cef00|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26393: *** free: at 'abstract.c:5728' pnt '0x83d0660|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26394: *** free: at 'sigNodeSet.c:219' pnt '0x83d0540|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26395: *** free: at 'sigNodeSet.c:220' pnt '0x83d0520|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26396: *** free: at 'symtable.c:1760' pnt '0x83d0440|s4': size 8, alloced at 'symtable.c:329'
-991866208: 26397: *** free: at 'symtable.c:1770' pnt '0x83d0560|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26398: *** free: at 'ltokenList.c:228' pnt '0x83d0760|s4': size 16, alloced at 'ltokenList.c:43'
-991866208: 26399: *** free: at 'ltokenList.c:229' pnt '0x83d07a0|s4': size 16, alloced at 'ltokenList.c:38'
-991866208: 26400: checking heap
-991866208: 26400: *** free: at 'ltoken.c:320' pnt '0x83d3100|s4': size 36, alloced at 'ltoken.c:253'
-991866208: 26401: *** free: at 'ltoken.c:320' pnt '0x83d3400|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26402: *** free: at 'abstract.c:5728' pnt '0x83d0780|s4': size 16, alloced at 'abstract.c:1367'
-991866208: 26403: *** free: at 'sigNodeSet.c:219' pnt '0x83d08a0|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26404: *** free: at 'sigNodeSet.c:220' pnt '0x83d0880|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26405: *** free: at 'symtable.c:1760' pnt '0x83d0860|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26406: *** free: at 'symtable.c:1770' pnt '0x83d08c0|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26407: *** free: at 'ltokenList.c:228' pnt '0x83d09a0|s2': size 16, alloced at 'ltokenList.c:43'
-991866208: 26408: *** free: at 'ltokenList.c:229' pnt '0x83d0980|s2': size 16, alloced at 'ltokenList.c:38'
-991866208: 26409: *** free: at 'ltoken.c:320' pnt '0x83d3780|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26410: *** free: at 'ltoken.c:320' pnt '0x83d36c0|s2': size 36, alloced at 'ltoken.c:253'
-991866208: 26411: *** free: at 'abstract.c:5728' pnt '0x83d09c0|s2': size 16, alloced at 'abstract.c:1367'
-991866208: 26412: *** free: at 'sigNodeSet.c:219' pnt '0x83d0a60|s2': size 32, alloced at 'sigNodeSet.c:57'
-991866208: 26413: *** free: at 'sigNodeSet.c:220' pnt '0x83d0a40|s2': size 12, alloced at 'sigNodeSet.c:53'
-991866208: 26414: *** free: at 'symtable.c:1760' pnt '0x83d0a20|s2': size 8, alloced at 'symtable.c:329'
-991866208: 26415: *** free: at 'symtable.c:1770' pnt '0x83d0a80|s2': size 8, alloced at 'symtable.c:1858'
-991866208: 26416: *** free: at 'symtable.c:1783' pnt '0x8233c00|s2': size 1024, alloced at 'symtable.c:1793'
-991866208: 26417: *** free: at 'symtable.c:1784' pnt '0x83a1e00|s2': size 12, alloced at 'symtable.c:1791'
-991866208: 26418: *** free: at 'mapping.c:55' pnt '0x83a1e40|s2': size 12, alloced at 'mapping.c:113'
-991866208: 26419: *** free: at 'mapping.c:55' pnt '0x83b8420|s2': size 12, alloced at 'mapping.c:113'
-991866208: 26420: *** free: at 'mapping.c:55' pnt '0x83b8180|s2': size 12, alloced at 'mapping.c:113'
-991866208: 26421: *** free: at 'mapping.c:68' pnt '0x822d400|s4': size 512, alloced at 'mapping.c:78'
-991866208: 26422: *** free: at 'mapping.c:69' pnt '0x83a1e20|s2': size 8, alloced at 'mapping.c:76'
-991866208: 26423: *** free: at 'symtable.c:150' pnt '0x8224e60|s6': size 12, alloced at 'symtable.c:224'
-991866208: 26424: *** free: at 'ltoken.c:320' pnt '0x83b08c0|s16': size 36, alloced at 'ltoken.c:253'
-991866208: 26425: *** free: at 'ltoken.c:320' pnt '0x83a7440|s20': size 36, alloced at 'ltoken.c:253'
-991866208: 26426: *** free: at 'abstract.c:5688' pnt '0x83a1f40|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26427: *** free: at 'abstract.c:5702' pnt '0x83a1f60|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26428: *** free: at 'ltoken.c:320' pnt '0x83b0e00|s6': size 36, alloced at 'ltoken.c:253'
-991866208: 26429: *** free: at 'ltoken.c:320' pnt '0x83b0d00|s8': size 36, alloced at 'ltoken.c:253'
-991866208: 26430: *** free: at 'abstract.c:5688' pnt '0x83a1f80|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26431: *** free: at 'abstract.c:5702' pnt '0x83a1fa0|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26432: *** free: at 'abstract.c:5688' pnt '0x83a1fc0|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26433: *** free: at 'abstract.c:5702' pnt '0x83a1fe0|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26434: *** free: at 'abstract.c:5702' pnt '0x83b3080|s2': size 8, alloced at 'sort.c:1871'
-991866208: 26435: *** free: at 'abstract.c:5688' pnt '0x83b3000|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26436: *** free: at 'abstract.c:5702' pnt '0x83b3020|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26437: *** free: at 'abstract.c:5688' pnt '0x83b3040|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26438: *** free: at 'abstract.c:5702' pnt '0x83b3060|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26439: *** free: at 'abstract.c:5688' pnt '0x83a1f00|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26440: *** free: at 'abstract.c:5702' pnt '0x83a1f20|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26441: *** free: at 'abstract.c:5688' pnt '0x83a1e80|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26442: *** free: at 'abstract.c:5702' pnt '0x83a1ea0|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26443: *** free: at 'abstract.c:5688' pnt '0x83a1ec0|s2': size 20, alloced at 'abstract.c:1476'
-991866208: 26444: *** free: at 'abstract.c:5702' pnt '0x83a1ee0|s2': size 8, alloced at 'abstract.c:1311'
-991866208: 26445: *** free: at 'sort.c:171' pnt '0x83b0f80|s2': size 48, alloced at 'sort.c:1876'
-991866208: 26446: *** free: at 'sort.c:171' pnt '0x83b0fc0|s2': size 48, alloced at 'sort.c:1889'
-991866208: 26447: *** free: at 'sort.c:171' pnt '0x83aff00|s4': size 48, alloced at 'sort.c:909'
-991866208: 26448: *** free: at 'sort.c:171' pnt '0x83b5080|s2': size 48, alloced at 'sort.c:387'
-991866208: 26449: *** free: at 'sort.c:171' pnt '0x83b50c0|s2': size 48, alloced at 'sort.c:351'
-991866208: 26450: *** free: at 'sort.c:171' pnt '0x83b51c0|s2': size 48, alloced at 'sort.c:351'
-991866208: 26451: *** free: at 'sort.c:171' pnt '0x83b52c0|s2': size 48, alloced at 'sort.c:351'
-991866208: 26452: *** free: at 'sort.c:171' pnt '0x83b53c0|s2': size 48, alloced at 'sort.c:569'
-991866208: 26453: *** free: at 'sort.c:171' pnt '0x83b5400|s2': size 48, alloced at 'sort.c:638'
-991866208: 26454: *** free: at 'sort.c:171' pnt '0x83b5440|s2': size 48, alloced at 'sort.c:720'
-991866208: 26455: *** free: at 'sort.c:171' pnt '0x83b5480|s2': size 48, alloced at 'sort.c:802'
-991866208: 26456: *** free: at 'sort.c:171' pnt '0x83b5e00|s2': size 48, alloced at 'sort.c:351'
-991866208: 26457: *** free: at 'sort.c:171' pnt '0x83b5f00|s2': size 48, alloced at 'sort.c:351'
-991866208: 26458: *** free: at 'sort.c:201' pnt '0x822d000|s8': size 400, alloced at 'sort.c:2015'
-991866208: 26459: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1f00|s3'
-991866208: 26460: *** alloc: at 'cpphash.c:428' for 37 bytes, got '0x83b0d00|s9'
-991866208: 26461: *** free: at 'ra=0x80a28ed' pnt '0x83a1f00|s4': size 9, alloced at 'ra=0x80e6889'
-991866208: 26462: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1ea0|s3'
-991866208: 26463: *** alloc: at 'cpphash.c:428' for 37 bytes, got '0x83b0e00|s7'
-991866208: 26464: *** free: at 'ra=0x80a28ed' pnt '0x83a1ea0|s4': size 9, alloced at 'ra=0x80e6889'
-991866208: 26465: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1ee0|s3'
-991866208: 26466: *** alloc: at 'cpphash.c:428' for 37 bytes, got '0x83b0fc0|s3'
-991866208: 26467: *** free: at 'ra=0x80a28ed' pnt '0x83a1ee0|s4': size 9, alloced at 'ra=0x80e6889'
-991866208: 26468: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x83a1ec0|s3'
-991866208: 26469: *** alloc: at 'cpphash.c:428' for 42 bytes, got '0x83b50c0|s3'
-991866208: 26470: *** free: at 'ra=0x80a28ed' pnt '0x83a1ec0|s4': size 14, alloced at 'ra=0x80e6889'
-991866208: 26471: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x83a1e80|s3'
-991866208: 26472: *** alloc: at 'cpphash.c:428' for 46 bytes, got '0x83b53c0|s3'
-991866208: 26473: *** free: at 'ra=0x80a28ed' pnt '0x83a1e80|s4': size 18, alloced at 'ra=0x80e6889'
-991866208: 26474: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83a1f20|s3'
-991866208: 26475: *** alloc: at 'cpphash.c:428' for 40 bytes, got '0x83b5480|s3'
-991866208: 26476: *** free: at 'ra=0x80a28ed' pnt '0x83a1f20|s4': size 12, alloced at 'ra=0x80e6889'
-991866208: 26477: *** alloc: at 'cpphash.c:428' for 42 bytes, got '0x83b5f00|s3'
-991866208: 26478: *** alloc: at 'cpphash.c:428' for 45 bytes, got '0x83b5e00|s3'
-991866208: 26479: *** alloc: at 'cpphash.c:428' for 43 bytes, got '0x83b5440|s3'
-991866208: 26480: *** alloc: at 'ra=0x80e6889' for 22 bytes, got '0x83b3060|s3'
-991866208: 26481: *** alloc: at 'cpphash.c:428' for 50 bytes, got '0x83b5400|s3'
-991866208: 26482: *** free: at 'ra=0x80a28ed' pnt '0x83b3060|s4': size 22, alloced at 'ra=0x80e6889'
-991866208: 26483: *** alloc: at 'ra=0x80e6889' for 20 bytes, got '0x83a1f00|s5'
-991866208: 26484: *** alloc: at 'cpphash.c:428' for 48 bytes, got '0x83b52c0|s3'
-991866208: 26485: *** free: at 'ra=0x80a28ed' pnt '0x83a1f00|s6': size 20, alloced at 'ra=0x80e6889'
-991866208: 26486: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1ea0|s5'
-991866208: 26487: *** alloc: at 'cpphash.c:428' for 37 bytes, got '0x83b51c0|s3'
-991866208: 26488: *** free: at 'ra=0x80a28ed' pnt '0x83a1ea0|s6': size 9, alloced at 'ra=0x80e6889'
-991866208: 26489: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x83a1ee0|s5'
-991866208: 26490: *** alloc: at 'cpphash.c:428' for 39 bytes, got '0x83b5080|s3'
-991866208: 26491: *** free: at 'ra=0x80a28ed' pnt '0x83a1ee0|s6': size 11, alloced at 'ra=0x80e6889'
-991866208: 26492: *** alloc: at 'cpplib.c:6498' for 1 bytes, got '0x83a1ec0|s5'
-991866208: 26493: *** free: at 'cpplib.c:6543' pnt '0x83a1ec0|s6': size 1, alloced at 'cpplib.c:6498'
-991866208: 26494: *** alloc: at 'ra=0x80e6889' for 44 bytes, got '0x83aff00|s5'
-991866208: 26495: *** alloc: at 'cpplib.c:6702' for 24 bytes, got '0x83a1e80|s5'
-991866208: 26496: *** alloc: at 'cpplib.c:6702' for 24 bytes, got '0x83a1f20|s5'
-991866208: 26497: *** free: at 'cpplib.c:6717' pnt '0x83aff00|s6': size 44, alloced at 'ra=0x80e6889'
-991866208: 26498: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b3040|s3'
-991866208: 26499: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83b3020|s3'
-991866208: 26500: checking heap
-991866208: 26500: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b3000|s3'
-991866208: 26501: *** alloc: at 'ra=0x80e6889' for 22 bytes, got '0x83b3080|s3'
-991866208: 26502: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b3060|s5'
-991866208: 26503: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x83a1fe0|s3'
-991866208: 26504: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83a1fc0|s3'
-991866208: 26505: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1f00|s7'
-991866208: 26506: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83a1fa0|s3'
-991866208: 26507: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83a1f80|s3'
-991866208: 26508: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83a1ea0|s7'
-991866208: 26509: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x83a1f60|s3'
-991866208: 26510: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83a1f40|s3'
-991866208: 26511: *** alloc: at 'ra=0x80e6889' for 17 bytes, got '0x83a1ee0|s7'
-991866208: 26512: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x8224e60|s7'
-991866208: 26513: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83a1ec0|s7'
-991866208: 26514: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83a1e20|s3'
-991866208: 26515: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x83b8180|s3'
-991866208: 26516: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b8420|s3'
-991866208: 26517: *** alloc: at 'ra=0x80e6889' for 20 bytes, got '0x83a1e40|s3'
-991866208: 26518: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83a1e00|s3'
-991866208: 26519: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83d0a80|s3'
-991866208: 26520: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0a20|s3'
-991866208: 26521: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x83d0a40|s3'
-991866208: 26522: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0a60|s3'
-991866208: 26523: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x83d09c0|s3'
-991866208: 26524: *** alloc: at 'ctypeList.c:38' for 12 bytes, got '0x83d0980|s3'
-991866208: 26525: *** alloc: at 'ctypeList.c:42' for 16 bytes, got '0x83d09a0|s3'
-991866208: 26526: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83d08c0|s3'
-991866208: 26527: *** alloc: at 'ctypeList.c:38' for 12 bytes, got '0x83d0860|s3'
-991866208: 26528: *** alloc: at 'ctypeList.c:42' for 16 bytes, got '0x83d0880|s3'
-991866208: 26529: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83d08a0|s3'
-991866208: 26530: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d000|s9'
-991866208: 26531: *** free: at 'ra=0x40092cd9' pnt '0x822d000|s10': size 364, alloced at 'ra=0x400932b1'
-991866208: 26532: *** alloc: at 'ra=0x80e6889' for 4 bytes, got '0x83d0780|s5'
-991866208: 26533: *** alloc: at 'ra=0x80e68d7' for 1 bytes, got '0x83d07a0|s5'
-991866208: 26534: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x83d0760|s5'
-991866208: 26535: *** alloc: at 'ra=0x80e66de' for 3 bytes, got '0x83d0560|s3'
-991866208: 26536: *** free: at 'general.c:247' pnt '0x83d07a0|s6': size 1, alloced at 'ra=0x80e68d7'
-991866208: 26537: *** free: at 'general.c:248' pnt '0x83d0760|s6': size 3, alloced at 'ra=0x80e6889'
-991866208: 26538: *** alloc: at 'ra=0x80e68d7' for 1 bytes, got '0x83d0440|s5'
-991866208: 26539: *** alloc: at 'ra=0x80e6782' for 6 bytes, got '0x83d0520|s3'
-991866208: 26540: *** free: at 'general.c:258' pnt '0x83d0440|s6': size 1, alloced at 'ra=0x80e68d7'
-991866208: 26541: *** alloc: at 'ra=0x80e6782' for 8 bytes, got '0x83d0540|s3'
-991866208: 26542: *** free: at 'general.c:258' pnt '0x83d0520|s4': size 6, alloced at 'ra=0x80e6782'
-991866208: 26543: *** alloc: at 'ra=0x80e6782' for 10 bytes, got '0x83d0660|s3'
-991866208: 26544: *** free: at 'general.c:258' pnt '0x83d0540|s4': size 8, alloced at 'ra=0x80e6782'
-991866208: 26545: *** alloc: at 'ra=0x80e6782' for 13 bytes, got '0x83d0620|s3'
-991866208: 26546: *** free: at 'general.c:258' pnt '0x83d0660|s4': size 10, alloced at 'ra=0x80e6782'
-991866208: 26547: *** alloc: at 'ra=0x80e6782' for 15 bytes, got '0x83d0640|s3'
-991866208: 26548: *** free: at 'general.c:258' pnt '0x83d0620|s4': size 13, alloced at 'ra=0x80e6782'
-991866208: 26549: *** alloc: at 'ra=0x80a692c' for 20 bytes, got '0x83d0400|s5'
-991866208: 26550: *** alloc: at 'ra=0x80e6889' for 6 bytes, got '0x83d0500|s3'
-991866208: 26551: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83d0300|s7'
-991866208: 26552: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83c4de0|s3'
-991866208: 26553: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83c4d80|s3'
-991866208: 26554: *** alloc: at 'cpplib.c:6187' for 771 bytes, got '0x8233c00|s3'
-991866208: 26555: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d000|s11'
-991866208: 26556: *** free: at 'cpplib.c:991' pnt '0x8233c00|s4': size 771, alloced at 'cpplib.c:6187'
-991866208: 26557: *** free: at 'ra=0x40092cd9' pnt '0x822d000|s12': size 364, alloced at 'ra=0x400932b1'
-991866208: 26558: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0760|s7'
-991866208: 26559: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83d07a0|s7'
-991866208: 26560: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0440|s7'
-991866208: 26561: *** alloc: at 'ra=0x80e6889' for 22 bytes, got '0x83c4da0|s3'
-991866208: 26562: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0520|s5'
-991866208: 26563: *** alloc: at 'ra=0x80e6889' for 18 bytes, got '0x83c4dc0|s3'
-991866208: 26564: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0540|s5'
-991866208: 26565: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83c4d20|s3'
-991866208: 26566: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0660|s5'
-991866208: 26567: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83c4ce0|s3'
-991866208: 26568: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83d0620|s5'
-991866208: 26569: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x83c4d00|s3'
-991866208: 26570: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83c4c20|s3'
-991866208: 26571: *** alloc: at 'ra=0x80e6889' for 17 bytes, got '0x83c4b00|s5'
-991866208: 26572: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83c4be0|s3'
-991866208: 26573: *** alloc: at 'ra=0x80e6889' for 12 bytes, got '0x83c4c00|s3'
-991866208: 26574: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83c4ac0|s5'
-991866208: 26575: *** alloc: at 'ra=0x80e6889' for 11 bytes, got '0x83c4bc0|s3'
-991866208: 26576: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83c49c0|s7'
-991866208: 26577: *** alloc: at 'ra=0x80e6889' for 20 bytes, got '0x83b3520|s3'
-991866208: 26578: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b34c0|s3'
-991866208: 26579: *** alloc: at 'ra=0x80e6889' for 9 bytes, got '0x83b34e0|s3'
-991866208: 26580: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b3500|s3'
-991866208: 26581: *** alloc: at 'ra=0x80e6889' for 14 bytes, got '0x83b3640|s3'
-991866208: 26582: *** alloc: at 'cpphash.c:145' for 28 bytes, got '0x83b3600|s3'
-991866208: 26583: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x83b3620|s3'
-991866208: 26584: *** free: at 'ctypeList.c:146' pnt '0x83d0880|s4': size 16, alloced at 'ctypeList.c:42'
-991866208: 26585: *** free: at 'ctypeList.c:147' pnt '0x83d0860|s4': size 12, alloced at 'ctypeList.c:38'
-991866208: 26586: *** free: at 'ctypeList.c:146' pnt '0x8224020|s2': size 16, alloced at 'ctypeList.c:42'
-991866208: 26587: *** free: at 'ctypeList.c:147' pnt '0x8224000|s2': size 12, alloced at 'ctypeList.c:38'
-991866208: 26588: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3600|s9'
-991866208: 26589: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83b3480|s3'
-991866208: 26590: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3680|s9'
-991866208: 26591: *** alloc: at 'sRef.c:6487' for 4 bytes, got '0x83b3440|s3'
-991866208: 26592: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b3460|s3'
-991866208: 26593: *** alloc: at 'idDecl.c:34' for 12 bytes, got '0x83b39a0|s3'
-991866208: 26594: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3700|s1'
-991866208: 26595: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83b3940|s3'
-991866208: 26596: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83aff00|s7'
-991866208: 26597: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83b3960|s3'
-991866208: 26598: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83b3980|s3'
-991866208: 26599: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83c9340|s3'
-991866208: 26600: checking heap
-991866208: 26600: *** alloc: at 'qualList.c:40' for 12 bytes, got '0x83c9120|s7'
-991866208: 26601: *** alloc: at 'qualList.c:44' for 32 bytes, got '0x83c9140|s7'
-991866208: 26602: *** free: at 'qtype.c:48' pnt '0x83b3460|s4': size 8, alloced at 'qtype.c:36'
-991866208: 26603: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3780|s1'
-991866208: 26604: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83d0880|s5'
-991866208: 26605: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83b0f80|s3'
-991866208: 26606: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x8224020|s3'
-991866208: 26607: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x8224000|s3'
-991866208: 26608: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83d0860|s5'
-991866208: 26609: *** alloc: at 'qualList.c:40' for 12 bytes, got '0x83c9100|s3'
-991866208: 26610: *** alloc: at 'qualList.c:44' for 32 bytes, got '0x83c90c0|s3'
-991866208: 26611: *** free: at 'qualList.c:197' pnt '0x83c9140|s8': size 32, alloced at 'qualList.c:44'
-991866208: 26612: *** free: at 'qualList.c:198' pnt '0x83c9120|s8': size 12, alloced at 'qualList.c:40'
-991866208: 26613: *** free: at 'qtype.c:48' pnt '0x83c9340|s4': size 8, alloced at 'qtype.c:36'
-991866208: 26614: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3800|s1'
-991866208: 26615: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83c90e0|s3'
-991866208: 26616: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83a7440|s21'
-991866208: 26617: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83b3bc0|s3'
-991866208: 26618: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83b3b80|s3'
-991866208: 26619: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b3ba0|s3'
-991866208: 26620: *** alloc: at 'qualList.c:40' for 12 bytes, got '0x83b3900|s3'
-991866208: 26621: *** alloc: at 'qualList.c:44' for 32 bytes, got '0x83b38c0|s3'
-991866208: 26622: *** free: at 'qualList.c:197' pnt '0x83c90c0|s4': size 32, alloced at 'qualList.c:44'
-991866208: 26623: *** free: at 'qualList.c:198' pnt '0x83c9100|s4': size 12, alloced at 'qualList.c:40'
-991866208: 26624: *** free: at 'qtype.c:48' pnt '0x83d0860|s6': size 8, alloced at 'qtype.c:36'
-991866208: 26625: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3880|s1'
-991866208: 26626: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83b3460|s5'
-991866208: 26627: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83b08c0|s17'
-991866208: 26628: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83b38e0|s3'
-991866208: 26629: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83b31a0|s3'
-991866208: 26630: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83b3140|s3'
-991866208: 26631: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83c9140|s9'
-991866208: 26632: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83c9120|s9'
-991866208: 26633: *** alloc: at 'qualList.c:40' for 12 bytes, got '0x83c9340|s5'
-991866208: 26634: *** alloc: at 'qualList.c:44' for 32 bytes, got '0x83b3160|s3'
-991866208: 26635: *** free: at 'qualList.c:197' pnt '0x83b38c0|s4': size 32, alloced at 'qualList.c:44'
-991866208: 26636: *** free: at 'qualList.c:198' pnt '0x83b3900|s4': size 12, alloced at 'qualList.c:40'
-991866208: 26637: *** free: at 'qtype.c:48' pnt '0x83b3ba0|s4': size 8, alloced at 'qtype.c:36'
-991866208: 26638: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3900|s1'
-991866208: 26639: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83b3180|s3'
-991866208: 26640: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83d36c0|s3'
-991866208: 26641: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83b3c80|s3'
-991866208: 26642: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83c90c0|s5'
-991866208: 26643: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83c9100|s5'
-991866208: 26644: *** free: at 'qualList.c:197' pnt '0x83b3160|s4': size 32, alloced at 'qualList.c:44'
-991866208: 26645: *** free: at 'qualList.c:198' pnt '0x83c9340|s6': size 12, alloced at 'qualList.c:40'
-991866208: 26646: *** free: at 'qtype.c:48' pnt '0x83c9120|s10': size 8, alloced at 'qtype.c:36'
-991866208: 26647: *** free: at 'idDecl.c:57' pnt '0x83b39a0|s4': size 12, alloced at 'idDecl.c:34'
-991866208: 26648: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x83d0860|s7'
-991866208: 26649: *** alloc: at 'ra=0x80a560f' for 840 bytes, got '0x8233c00|s5'
-991866208: 26650: *** alloc: at 'ra=0x80e6889' for 15 bytes, got '0x83b3c00|s5'
-991866208: 26651: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3be0|s5'
-991866208: 26652: *** alloc: at 'ra=0x400932b1' for 364 bytes, got '0x822d000|s13'
-991866208: 26653: *** alloc: at 'usymtab.c:258' for 48 bytes, got '0x83d3780|s3'
-991866208: 26654: *** alloc: at 'usymtab.c:262' for 16 bytes, got '0x83b3c40|s3'
-991866208: 26655: *** alloc: at 'lex.yy.c:3008' for 40 bytes, got '0x83d3400|s3'
-991866208: 26656: *** alloc: at 'lex.yy.c:3008' for 16386 bytes, got '0x8407000|s1'
-991866208: 26657: *** alloc: at 'ra=0x80e68d7' for 257 bytes, got '0x822d400|s5'
-991866208: 26658: *** free: at 'cscanner.l:1844' pnt '0x822d400|s6': size 257, alloced at 'ra=0x80e68d7'
-991866208: 26659: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3ba0|s5'
-991866208: 26660: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3900|s5'
-991866208: 26661: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83b38c0|s5'
-991866208: 26662: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b3b60|s5'
-991866208: 26663: *** alloc: at 'qualList.c:40' for 12 bytes, got '0x83b3b40|s5'
-991866208: 26664: *** alloc: at 'qualList.c:44' for 32 bytes, got '0x83b3160|s5'
-991866208: 26665: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83c9340|s7'
-991866208: 26666: *** alloc: at 'idDecl.c:34' for 12 bytes, got '0x83c9120|s11'
-991866208: 26667: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b39a0|s5'
-991866208: 26668: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3320|s3'
-991866208: 26669: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83b32e0|s3'
-991866208: 26670: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b3300|s3'
-991866208: 26671: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b32a0|s3'
-991866208: 26672: *** alloc: at 'idDecl.c:34' for 12 bytes, got '0x83b3260|s3'
-991866208: 26673: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3280|s3'
-991866208: 26674: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3980|s1'
-991866208: 26675: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83b3220|s3'
-991866208: 26676: *** alloc: at 'ra=0x80a2f8a' for 3 bytes, got '0x83b31e0|s3'
-991866208: 26677: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83d3100|s5'
-991866208: 26678: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x83b3200|s3'
-991866208: 26679: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83b3100|s3'
-991866208: 26680: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83b30c0|s3'
-991866208: 26681: *** free: at 'ra=0x80a28ed' pnt '0x83b31e0|s4': size 3, alloced at 'ra=0x80a2f8a'
-991866208: 26682: *** alloc: at 'uentryList.c:48' for 16 bytes, got '0x83b30e0|s3'
-991866208: 26683: *** alloc: at 'uentryList.c:52' for 32 bytes, got '0x83b3860|s3'
-991866208: 26684: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3800|s3'
-991866208: 26685: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83b3820|s3'
-991866208: 26686: *** alloc: at 'ctbase.i:1647' for 8 bytes, got '0x83b3840|s3'
-991866208: 26687: *** alloc: at 'uentryList.c:298' for 16 bytes, got '0x83c9700|s3'
-991866208: 26688: *** alloc: at 'uentryList.c:307' for 4 bytes, got '0x83c9600|s5'
-991866208: 26689: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83cef00|s3'
-991866208: 26690: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x83c9620|s5'
-991866208: 26691: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c94a0|s7'
-991866208: 26692: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3a00|s1'
-991866208: 26693: *** alloc: at 'sRef.c:8651' for 4 bytes, got '0x83c9460|s7'
-991866208: 26694: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83c95e0|s3'
-991866208: 26695: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83b3b20|s3'
-991866208: 26696: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83b39c0|s3'
-991866208: 26697: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83b39e0|s3'
-991866208: 26698: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83b35e0|s5'
-991866208: 26699: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b37a0|s3'
-991866208: 26700: checking heap
-991866208: 26700: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83b37c0|s3'
-991866208: 26701: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83b31e0|s5'
-991866208: 26702: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83c4fe0|s3'
-991866208: 26703: *** alloc: at 'qualList.c:40' for 12 bytes, got '0x83c4f80|s3'
-991866208: 26704: *** alloc: at 'qualList.c:44' for 32 bytes, got '0x83c4fa0|s3'
-991866208: 26705: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83cef80|s3'
-991866208: 26706: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4fc0|s3'
-991866208: 26707: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3a80|s1'
-991866208: 26708: *** alloc: at 'uentry.c:858' for 4 bytes, got '0x83c9260|s3'
-991866208: 26709: *** alloc: at 'uentry.c:859' for 36 bytes, got '0x83ced80|s3'
-991866208: 26710: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83c9220|s3'
-991866208: 26711: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c9240|s3'
-991866208: 26712: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4f00|s3'
-991866208: 26713: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3b00|s1'
-991866208: 26714: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83c4ec0|s3'
-991866208: 26715: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83c4ee0|s3'
-991866208: 26716: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83b3b00|s3'
-991866208: 26717: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83b3aa0|s3'
-991866208: 26718: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b3ac0|s3'
-991866208: 26719: *** free: at 'ra=0x80a28ed' pnt '0x83b3ac0|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26720: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b3ae0|s3'
-991866208: 26721: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83b3a40|s3'
-991866208: 26722: *** alloc: at 'cstringTable.c:96' for 12 bytes, got '0x83b3a00|s3'
-991866208: 26723: *** alloc: at 'cstringTable.c:100' for 8 bytes, got '0x83b3a20|s3'
-991866208: 26724: *** free: at 'ra=0x80a28ed' pnt '0x83c4f00|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26725: *** free: at 'qualList.c:197' pnt '0x83b3160|s6': size 32, alloced at 'qualList.c:44'
-991866208: 26726: *** free: at 'qualList.c:198' pnt '0x83b3b40|s6': size 12, alloced at 'qualList.c:40'
-991866208: 26727: *** free: at 'qtype.c:48' pnt '0x83b3b60|s6': size 8, alloced at 'qtype.c:36'
-991866208: 26728: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x83cedc0|s3'
-991866208: 26729: *** alloc: at 'exprData.i:497' for 4 bytes, got '0x83df300|s3'
-991866208: 26730: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83df2a0|s3'
-991866208: 26731: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83df2c0|s3'
-991866208: 26732: *** free: at 'ra=0x80a28ed' pnt '0x83df2a0|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26733: *** free: at 'exprData.i:269' pnt '0x83df300|s4': size 4, alloced at 'exprData.i:497'
-991866208: 26734: *** alloc: at 'exprData.i:653' for 4 bytes, got '0x83df2e0|s3'
-991866208: 26735: *** alloc: at 'exprData.i:655' for 8 bytes, got '0x83df240|s3'
-991866208: 26736: *** free: at 'ra=0x80a3a08' pnt '0x83df2c0|s4': size 16, alloced at 'ra=0x80a4654'
-991866208: 26737: *** free: at 'ra=0x80a28ed' pnt '0x83b38c0|s6': size 3, alloced at 'ra=0x80e68d7'
-991866208: 26738: *** free: at 'qualList.c:197' pnt '0x83c4fa0|s4': size 32, alloced at 'qualList.c:44'
-991866208: 26739: *** free: at 'qualList.c:198' pnt '0x83c4f80|s4': size 12, alloced at 'qualList.c:40'
-991866208: 26740: *** free: at 'qtype.c:48' pnt '0x83c9340|s8': size 8, alloced at 'qtype.c:36'
-991866208: 26741: *** free: at 'idDecl.c:57' pnt '0x83c9120|s12': size 12, alloced at 'idDecl.c:34'
-991866208: 26742: *** free: at 'exprData.i:248' pnt '0x83df240|s4': size 8, alloced at 'exprData.i:655'
-991866208: 26743: *** free: at 'exprData.i:269' pnt '0x83df2e0|s4': size 4, alloced at 'exprData.i:653'
-991866208: 26744: *** free: at 'exprNode.c:365' pnt '0x83cedc0|s4': size 52, alloced at 'exprNode.c:380'
-991866208: 26745: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3160|s7'
-991866208: 26746: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83b3b40|s7'
-991866208: 26747: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b3b60|s7'
-991866208: 26748: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83c4f00|s5'
-991866208: 26749: *** alloc: at 'idDecl.c:34' for 12 bytes, got '0x83b3ac0|s5'
-991866208: 26750: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83df200|s3'
-991866208: 26751: *** free: at 'ra=0x80a3a08' pnt '0x83b3900|s6': size 16, alloced at 'ra=0x80a4654'
-991866208: 26752: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83df2a0|s5'
-991866208: 26753: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83df300|s5'
-991866208: 26754: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83df220|s3'
-991866208: 26755: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83c4880|s3'
-991866208: 26756: *** alloc: at 'idDecl.c:34' for 12 bytes, got '0x83df2c0|s5'
-991866208: 26757: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b38c0|s7'
-991866208: 26758: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3b80|s1'
-991866208: 26759: *** alloc: at 'sRef.c:3055' for 4 bytes, got '0x83c4f80|s5'
-991866208: 26760: *** alloc: at 'ra=0x80a2f8a' for 3 bytes, got '0x83c9340|s9'
-991866208: 26761: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83c7400|s3'
-991866208: 26762: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x83df240|s5'
-991866208: 26763: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83df2e0|s5'
-991866208: 26764: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83c9120|s13'
-991866208: 26765: *** free: at 'ra=0x80a28ed' pnt '0x83c9340|s10': size 3, alloced at 'ra=0x80a2f8a'
-991866208: 26766: *** alloc: at 'uentryList.c:48' for 16 bytes, got '0x83c4fa0|s5'
-991866208: 26767: *** alloc: at 'uentryList.c:52' for 32 bytes, got '0x83c4820|s3'
-991866208: 26768: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c4840|s3'
-991866208: 26769: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83c4860|s3'
-991866208: 26770: *** alloc: at 'ctbase.i:1647' for 8 bytes, got '0x83c49a0|s3'
-991866208: 26771: *** alloc: at 'uentryList.c:298' for 16 bytes, got '0x83b3900|s7'
-991866208: 26772: *** alloc: at 'uentryList.c:307' for 4 bytes, got '0x83c4960|s3'
-991866208: 26773: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83cedc0|s5'
-991866208: 26774: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x83c4980|s3'
-991866208: 26775: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c47a0|s3'
-991866208: 26776: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3c00|s1'
-991866208: 26777: *** alloc: at 'sRef.c:8651' for 4 bytes, got '0x83c4780|s3'
-991866208: 26778: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83c4600|s7'
-991866208: 26779: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83c44a0|s3'
-991866208: 26780: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83c4440|s3'
-991866208: 26781: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83c4460|s3'
-991866208: 26782: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83c4480|s3'
-991866208: 26783: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c45c0|s3'
-991866208: 26784: *** alloc: at 'ctbase.i:1485' for 8 bytes, got '0x83c4580|s3'
-991866208: 26785: *** alloc: at 'ctbase.i:1733' for 8 bytes, got '0x83c9340|s11'
-991866208: 26786: *** alloc: at 'cttable.i:153' for 24 bytes, got '0x83c45a0|s3'
-991866208: 26787: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83c7480|s3'
-991866208: 26788: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c43c0|s3'
-991866208: 26789: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3c80|s1'
-991866208: 26790: *** alloc: at 'uentry.c:858' for 4 bytes, got '0x83c4380|s3'
-991866208: 26791: *** alloc: at 'uentry.c:859' for 36 bytes, got '0x83c7180|s3'
-991866208: 26792: *** alloc: at 'stateInfo.c:117' for 12 bytes, got '0x83c43a0|s3'
-991866208: 26793: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c42a0|s3'
-991866208: 26794: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4240|s3'
-991866208: 26795: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4260|s3'
-991866208: 26796: *** free: at 'ra=0x80a28ed' pnt '0x83c4260|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26797: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4280|s3'
-991866208: 26798: *** alloc: at 'cstringTable.c:54' for 8 bytes, got '0x83c41c0|s3'
-991866208: 26799: *** free: at 'ra=0x80a28ed' pnt '0x83c4240|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26800: checking heap
-991866208: 26800: *** alloc: at 'usymtab.c:258' for 48 bytes, got '0x83c7200|s3'
-991866208: 26801: *** alloc: at 'usymtab.c:262' for 16 bytes, got '0x83c4180|s3'
-991866208: 26802: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83b5900|s3'
-991866208: 26803: *** alloc: at 'ra=0x80e6889' for 3 bytes, got '0x83c41a0|s3'
-991866208: 26804: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3420|s3'
-991866208: 26805: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3d00|s1'
-991866208: 26806: *** alloc: at 'sRef.c:8651' for 4 bytes, got '0x83b33c0|s3'
-991866208: 26807: *** alloc: at 'sRefSet.c:527' for 12 bytes, got '0x83b33e0|s3'
-991866208: 26808: *** alloc: at 'sRefSet.c:532' for 16 bytes, got '0x83b3400|s3'
-991866208: 26809: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83b35c0|s3'
-991866208: 26810: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83b3580|s3'
-991866208: 26811: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b35a0|s3'
-991866208: 26812: *** free: at 'ra=0x80a28ed' pnt '0x83b35a0|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26813: *** free: at 'ra=0x80a28ed' pnt '0x83b3b40|s8': size 3, alloced at 'ra=0x80e68d7'
-991866208: 26814: *** free: at 'qtype.c:48' pnt '0x83c4f00|s6': size 8, alloced at 'qtype.c:36'
-991866208: 26815: *** free: at 'idDecl.c:57' pnt '0x83b3ac0|s6': size 12, alloced at 'idDecl.c:34'
-991866208: 26816: *** alloc: at 'usymtab.c:258' for 48 bytes, got '0x83b56c0|s3'
-991866208: 26817: *** alloc: at 'usymtab.c:262' for 16 bytes, got '0x83c4260|s5'
-991866208: 26818: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3380|s3'
-991866208: 26819: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3d80|s1'
-991866208: 26820: *** alloc: at 'sRefTable.c:39' for 12 bytes, got '0x83c4240|s5'
-991866208: 26821: *** alloc: at 'sRefTable.c:43' for 2048 bytes, got '0x8228800|s5'
-991866208: 26822: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83c7b00|s7'
-991866208: 26823: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b3360|s3'
-991866208: 26824: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83b3240|s5'
-991866208: 26825: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83c40a0|s3'
-991866208: 26826: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4040|s3'
-991866208: 26827: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3e00|s1'
-991866208: 26828: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83c4060|s3'
-991866208: 26829: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83c4080|s3'
-991866208: 26830: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83bdf20|s5'
-991866208: 26831: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83b8f40|s5'
-991866208: 26832: *** free: at 'ra=0x80a28ed' pnt '0x83c4040|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26833: *** alloc: at 'aliasTable.c:50' for 16 bytes, got '0x83b3b40|s9'
-991866208: 26834: *** alloc: at 'aliasTable.c:54' for 32 bytes, got '0x83c4f00|s7'
-991866208: 26835: *** alloc: at 'aliasTable.c:55' for 32 bytes, got '0x83b3ac0|s7'
-991866208: 26836: *** alloc: at 'sRefSet.c:56' for 12 bytes, got '0x83b35a0|s5'
-991866208: 26837: *** alloc: at 'sRefSet.c:60' for 16 bytes, got '0x83b8f20|s5'
-991866208: 26838: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3e80|s1'
-991866208: 26839: *** alloc: at 'sRef.c:3334' for 4 bytes, got '0x83b3740|s3'
-991866208: 26840: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3560|s5'
-991866208: 26841: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83b3700|s3'
-991866208: 26842: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b3720|s3'
-991866208: 26843: *** alloc: at 'qtype.c:36' for 8 bytes, got '0x83b36e0|s3'
-991866208: 26844: *** alloc: at 'idDecl.c:34' for 12 bytes, got '0x83b36a0|s3'
-991866208: 26845: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b36c0|s3'
-991866208: 26846: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3f00|s1'
-991866208: 26847: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83c6f80|s5'
-991866208: 26848: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83e3e40|s3'
-991866208: 26849: *** alloc: at 'uentry.c:2944' for 4 bytes, got '0x83e3de0|s3'
-991866208: 26850: *** alloc: at 'uentry.c:2945' for 16 bytes, got '0x83e3e00|s3'
-991866208: 26851: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83e3e20|s3'
-991866208: 26852: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83c4040|s5'
-991866208: 26853: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x83a3f80|s1'
-991866208: 26854: *** alloc: at 'sRef.c:2972' for 4 bytes, got '0x83e3c60|s5'
-991866208: 26855: *** alloc: at 'sRef.c:2974' for 8 bytes, got '0x83e3ce0|s5'
-991866208: 26856: *** alloc: at 'sRef.c:8724' for 4 bytes, got '0x83e3c80|s5'
-991866208: 26857: *** alloc: at 'sRef.c:8725' for 8 bytes, got '0x83bd260|s3'
-991866208: 26858: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83bd200|s3'
-991866208: 26859: *** free: at 'ra=0x80a28ed' pnt '0x83bd200|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26860: *** free: at 'ra=0x80a28ed' pnt '0x83c4040|s6': size 2, alloced at 'ra=0x80e6889'
-991866208: 26861: *** free: at 'qtype.c:48' pnt '0x83b3720|s4': size 8, alloced at 'qtype.c:36'
-991866208: 26862: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x83c7a00|s3'
-991866208: 26863: *** alloc: at 'exprData.i:497' for 4 bytes, got '0x83bd220|s3'
-991866208: 26864: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83bd240|s3'
-991866208: 26865: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83bd7a0|s3'
-991866208: 26866: *** free: at 'ra=0x80a28ed' pnt '0x83bd240|s4': size 2, alloced at 'ra=0x80e6889'
-991866208: 26867: *** free: at 'exprData.i:269' pnt '0x83bd220|s4': size 4, alloced at 'exprData.i:497'
-991866208: 26868: *** alloc: at 'exprData.i:653' for 4 bytes, got '0x83bd6a0|s5'
-991866208: 26869: *** alloc: at 'exprData.i:655' for 8 bytes, got '0x83bd6c0|s5'
-991866208: 26870: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83bd4e0|s7'
-991866208: 26871: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83bd5c0|s5'
-991866208: 26872: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83bd5e0|s5'
-991866208: 26873: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83bd3c0|s5'
-991866208: 26874: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x83c7ac0|s3'
-991866208: 26875: *** alloc: at 'exprData.i:497' for 4 bytes, got '0x83bd4a0|s3'
-991866208: 26876: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83bd4c0|s3'
-991866208: 26877: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83bd380|s3'
-991866208: 26878: *** alloc: at 'filelocList.c:46' for 12 bytes, got '0x83bd340|s3'
-991866208: 26879: *** alloc: at 'filelocList.c:50' for 32 bytes, got '0x83bd200|s5'
-991866208: 26880: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83c4040|s7'
-991866208: 26881: *** alloc: at 'usymtab.c:258' for 48 bytes, got '0x83b5d00|s3'
-991866208: 26882: *** alloc: at 'usymtab.c:262' for 16 bytes, got '0x83b3720|s5'
-991866208: 26883: *** alloc: at 'usymtab.c:269' for 16 bytes, got '0x83bd360|s3'
-991866208: 26884: *** alloc: at 'aliasTable.c:509' for 16 bytes, got '0x83bd0a0|s5'
-991866208: 26885: *** alloc: at 'aliasTable.c:514' for 4 bytes, got '0x83bd180|s3'
-991866208: 26886: *** alloc: at 'aliasTable.c:515' for 4 bytes, got '0x83bd240|s5'
-991866208: 26887: *** alloc: at 'sRefSet.c:472' for 12 bytes, got '0x83bd220|s5'
-991866208: 26888: *** alloc: at 'sRefSet.c:477' for 16 bytes, got '0x83bd1a0|s3'
-991866208: 26889: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b8b00|s3'
-991866208: 26890: *** alloc: at 'usymtab.c:258' for 48 bytes, got '0x83b5ac0|s3'
-991866208: 26891: *** alloc: at 'usymtab.c:262' for 16 bytes, got '0x83b8aa0|s3'
-991866208: 26892: *** alloc: at 'aliasTable.c:509' for 16 bytes, got '0x83b8ac0|s3'
-991866208: 26893: *** alloc: at 'aliasTable.c:514' for 4 bytes, got '0x83b8ae0|s3'
-991866208: 26894: *** alloc: at 'aliasTable.c:515' for 4 bytes, got '0x83bd060|s3'
-991866208: 26895: *** alloc: at 'sRefSet.c:472' for 12 bytes, got '0x83bd020|s3'
-991866208: 26896: *** alloc: at 'sRefSet.c:477' for 16 bytes, got '0x83bd040|s3'
-991866208: 26897: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b8900|s7'
-991866208: 26898: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b8d80|s7'
-991866208: 26899: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x83b5f80|s3'
-991866208: 26900: checking heap
-991866208: 26900: *** alloc: at 'multiVal.c:39' for 12 bytes, got '0x83b8f00|s3'
-991866208: 26901: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b8c60|s5'
-991866208: 26902: *** alloc: at 'exprData.i:489' for 4 bytes, got '0x83b8d40|s3'
-991866208: 26903: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b8c40|s5'
-991866208: 26904: *** alloc: at 'usymtab.c:258' for 48 bytes, got '0x83b5e80|s3'
-991866208: 26905: *** alloc: at 'usymtab.c:262' for 16 bytes, got '0x83b8c20|s3'
-991866208: 26906: *** alloc: at 'usymtab.c:269' for 16 bytes, got '0x83b8be0|s3'
-991866208: 26907: *** alloc: at 'aliasTable.c:509' for 16 bytes, got '0x83b8c00|s3'
-991866208: 26908: *** alloc: at 'aliasTable.c:514' for 4 bytes, got '0x83b85e0|s7'
-991866208: 26909: *** alloc: at 'aliasTable.c:515' for 4 bytes, got '0x83b8960|s5'
-991866208: 26910: *** alloc: at 'sRefSet.c:472' for 12 bytes, got '0x83b86a0|s13'
-991866208: 26911: *** alloc: at 'sRefSet.c:477' for 16 bytes, got '0x83b3e00|s3'
-991866208: 26912: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3da0|s3'
-991866208: 26913: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x83b5340|s3'
-991866208: 26914: *** alloc: at 'multiVal.c:39' for 12 bytes, got '0x83b3dc0|s3'
-991866208: 26915: *** alloc: at 'exprData.i:539' for 4 bytes, got '0x83b3de0|s3'
-991866208: 26916: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3c20|s5'
-991866208: 26917: *** alloc: at 'ra=0x80e68d7' for 3 bytes, got '0x83b3cc0|s3'
-991866208: 26918: *** alloc: at 'uentry.c:95' for 48 bytes, got '0x83b5240|s3'
-991866208: 26919: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b3ce0|s3'
-991866208: 26920: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b8080|s3'
-991866208: 26921: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b8020|s3'
-991866208: 26922: *** alloc: at 'sRef.c:213' for 72 bytes, got '0x8232000|s3'
-991866208: 26923: *** alloc: at 'sRef.c:8644' for 4 bytes, got '0x83b8040|s3'
-991866208: 26924: *** alloc: at 'sRef.c:8645' for 8 bytes, got '0x83b8060|s3'
-991866208: 26925: *** alloc: at 'sRefSet.c:44' for 12 bytes, got '0x83b3fe0|s3'
-991866208: 26926: *** alloc: at 'sRefSet.c:48' for 16 bytes, got '0x83b3fa0|s3'
-991866208: 26927: *** alloc: at 'uentry.c:6163' for 4 bytes, got '0x83b3fc0|s3'
-991866208: 26928: *** alloc: at 'uentry.c:6070' for 16 bytes, got '0x83b3f40|s3'
-991866208: 26929: *** alloc: at 'usymtab.c:4518' for 8 bytes, got '0x83b3ee0|s3'
-991866208: 26930: *** alloc: at 'ra=0x80a4654' for 16 bytes, got '0x83b3f00|s3'
-991866208: 26931: *** alloc: at 'exprNode.c:380' for 52 bytes, got '0x83b5140|s3'
-991866208: 26932: *** alloc: at 'exprData.i:497' for 4 bytes, got '0x83b3f20|s3'
-991866208: 26933: *** alloc: at 'ra=0x80e6889' for 2 bytes, got '0x83b3ea0|s3'
diff --git a/test/temp/names.c b/test/temp/names.c
deleted file mode 100644 (file)
index 3aadd31..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-struct _s
-{
-  int _p;
-} ;
-
-int _px;
-
diff --git a/test/temp/onlyret.c b/test/temp/onlyret.c
deleted file mode 100644 (file)
index 8b1b07b..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-int f (void)
-{
-  char *s;
-
-  s = malloc (sizeof (char));
-
-  if (s == NULL)
-    {
-      return 0;
-    }
-
-
-  return 1;
-}
-     
diff --git a/test/temp/outglob.c b/test/temp/outglob.c
deleted file mode 100644 (file)
index 96d7766..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-int x1, x2, x3;
-
-int g()
-{
-  return x1 + x2 + x3; /* 1. uses x3 before definition */
-}
-
-int f()
-{
-  int loc;
-
-  if (3 > 4)
-    {
-      loc = 3;
-      return x1; /* 2, 3, 4. bad --- x1 not defined, x2, x3 not defined */ 
-    }
-  else  
-    { 
-      if (4 > 6)
-       {
-         loc = x1;  /* 5. x1 not defined */
-         // loc = g(); /* 6. bad --- x1, x2 not defined before call (defines x2 and x3) */
-         loc = x3; 
-       }
-      else if (2 > 3)
-       {
-         loc = x3; /* 7. x3 not defined */
-         x1 = 6;
-         x2 = 7;
-         return g(); 
-       }
-      else
-       {
-         x1 = 6;
-         x2 = 7;
-         
-         return 12; /* 8. returns with x3 not defined */
-       }
-    }
-
-  return 12; /* NO! [9, 10. returns with x2 and x3 undefined (x1 IS defined on all branches!)] */
-}
-
-int h (void)
-{
-  return x1; /* okay */
-}
-
-
-
-
-
-
-
diff --git a/test/temp/outglob.expect b/test/temp/outglob.expect
deleted file mode 100644 (file)
index 2d60d5b..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-
-outglob.c: (in function g)
-outglob.c:5:20: Undef global x3 used before definition
-outglob.c: (in function f)
-outglob.c:15:14: Undef global x1 used before definition
-outglob.c:15:17: Function returns with global x2 undefined
-   outglob.lcl:3: Storage x2 becomes undefined
-outglob.c:15:17: Function returns with global x3 undefined
-   outglob.lcl:3: Storage x3 becomes undefined
-outglob.c:21:10: Undef global x1 used before definition
-outglob.c:22:10: Global x2 used by function undefined before call: g
-outglob.c:27:10: Undef global x3 used before definition
-outglob.c:37:14: Function returns with global x3 undefined
-   outglob.lcl:3: Storage x3 becomes undefined
-outglob.c:41:13: Function returns with global x2 undefined
-   outglob.lcl:3: Storage x2 becomes undefined
-outglob.c:41:13: Function returns with global x3 undefined
-   outglob.lcl:3: Storage x3 becomes undefined
-
-Finished LCLint checking --- 10 code errors found, as expected
diff --git a/test/temp/outglob.lcl b/test/temp/outglob.lcl
deleted file mode 100644 (file)
index a99f2c7..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-int x1, x2, x3;
-
-int f (void) undef int x1; undef int x2; undef int x3;
-{ modifies x1, x2, x3; }
-       
-int g (void) int x1, x2; undef int x3;
-{ modifies x3; }
diff --git a/test/temp/outglob.lcs b/test/temp/outglob.lcs
deleted file mode 100644 (file)
index d3ff1f0..0000000
+++ /dev/null
@@ -1,127 +0,0 @@
-%PASSED Output from LCLint 2.9a
-%LCLimports 
-%LCLSortTable
-%LCLsort bool immutable nil nil
-%LCLsort Bool synonym bool nil
-%LCLsort int primitive nil nil
-%LCLsort char primitive nil nil
-%LCLsort void primitive nil nil
-%LCLsort _char_Obj obj char nil
-%LCLsort __char_Obj_Ptr ptr _char_Obj nil
-%LCLsort __char_Obj_Arr arr _char_Obj nil
-%LCLsort _char_Vec vec char __char_Obj_Arr
-%LCLsort float primitive nil nil
-%LCLsort double primitive nil nil
-%LCLsort _int_Obj obj int nil
-%LCLSortTableEnd
-%LCLSymbolTable
-%LCLop max :int, int -> int
-%LCLop 0 : -> int
-%LCLop 0 : -> double
-%LCLop 1 : -> int
-%LCLop 1 : -> double
-%LCLop __ < __  :int, int -> bool
-%LCLop __ < __  :double, double -> bool
-%LCLop if __ then __ else __  :bool, bool, bool -> bool
-%LCLop if __ then __ else __  :bool, int, int -> int
-%LCLop if __ then __ else __  :bool, double, double -> double
-%LCLop if __ then __ else __  :bool, _char_Vec, _char_Vec -> _char_Vec
-%LCLop if __ then __ else __  :bool, char, char -> char
-%LCLop empty : -> _char_Vec
-%LCLop __ > __  :int, int -> bool
-%LCLop __ > __  :double, double -> bool
-%LCLop count :char, _char_Vec -> int
-%LCLop head :_char_Vec -> char
-%LCLop __ \inv :double -> double
-%LCLop init :_char_Vec -> _char_Vec
-%LCLop isEmpty :_char_Vec -> bool
-%LCLop last :_char_Vec -> char
-%LCLop len :_char_Vec -> int
-%LCLop prefix :_char_Vec, int -> _char_Vec
-%LCLop __ / __  :double, double -> double
-%LCLop removePrefix :_char_Vec, int -> _char_Vec
-%LCLop __ \implies __  :bool, bool -> bool
-%LCLop substring :_char_Vec, int, int -> _char_Vec
-%LCLop __ || __  :_char_Vec, _char_Vec -> _char_Vec
-%LCLop tail :_char_Vec -> _char_Vec
-%LCLop __ \in __  :char, _char_Vec -> bool
-%LCLop nullTerminated :_char_Vec -> bool
-%LCLop throughNull :_char_Vec -> _char_Vec
-%LCLop sameStr :_char_Vec, _char_Vec -> bool
-%LCLop lenStr :_char_Vec -> int
-%LCLop times10plus :int, int -> int
-%LCLop plus1 :int -> int
-%LCLop 2 : -> int
-%LCLop 3 : -> int
-%LCLop 4 : -> int
-%LCLop 5 : -> int
-%LCLop 6 : -> int
-%LCLop 7 : -> int
-%LCLop 8 : -> int
-%LCLop 9 : -> int
-%LCLop __ * __  :int, int -> int
-%LCLop __ * __  :double, double -> double
-%LCLop true : -> bool
-%LCLop false : -> bool
-%LCLop __ \and __  :bool, bool -> bool
-%LCLop __ \or __  :bool, bool -> bool
-%LCLop __ \eq __  :bool, bool -> bool
-%LCLop __ \eq __  :int, int -> bool
-%LCLop __ \eq __  :double, double -> bool
-%LCLop __ \eq __  :_char_Vec, _char_Vec -> bool
-%LCLop __ \eq __  :char, char -> bool
-%LCLop \not __  :bool -> bool
-%LCLop __ \neq __  :bool, bool -> bool
-%LCLop __ \neq __  :int, int -> bool
-%LCLop __ \neq __  :double, double -> bool
-%LCLop __ \neq __  :_char_Vec, _char_Vec -> bool
-%LCLop __ \neq __  :char, char -> bool
-%LCLop { __ } :char -> _char_Vec
-%LCLop __ |- __  :_char_Vec, char -> _char_Vec
-%LCLop __ [] :__char_Obj_Ptr -> __char_Obj_Arr
-%LCLop __ -| __  :char, _char_Vec -> _char_Vec
-%LCLop __ [__] :_char_Vec, int -> char
-%LCLop __ [__] :__char_Obj_Arr, int -> _char_Obj
-%LCLop __ \leq __  :int, int -> bool
-%LCLop __ \leq __  :double, double -> bool
-%LCLop __ \geq __  :int, int -> bool
-%LCLop __ \geq __  :double, double -> bool
-%LCLop null : -> char
-%LCLop NIL : -> __char_Obj_Ptr
-%LCLop - __  :int -> int
-%LCLop - __  :double -> double
-%LCLop __ + __  :__char_Obj_Ptr, int -> __char_Obj_Ptr
-%LCLop __ + __  :int, __char_Obj_Ptr -> __char_Obj_Ptr
-%LCLop __ + __  :int, int -> int
-%LCLop __ + __  :double, double -> double
-%LCLop __ - __  :__char_Obj_Ptr, int -> __char_Obj_Ptr
-%LCLop __ - __  :__char_Obj_Ptr, __char_Obj_Ptr -> int
-%LCLop __ - __  :int, int -> int
-%LCLop __ - __  :double, double -> double
-%LCLop sizeof :bool -> int
-%LCLop sizeof :int -> int
-%LCLop sizeof :char -> int
-%LCLop sizeof :void -> int
-%LCLop sizeof :float -> int
-%LCLop sizeof :double -> int
-%LCLop isSub :_char_Vec, int -> bool
-%LCLop isSub :__char_Obj_Arr, int -> bool
-%LCLop succ :int -> int
-%LCLop pred :int -> int
-%LCLop abs :int -> int
-%LCLop abs :double -> double
-%LCLop div :int, int -> int
-%LCLop mod :int, int -> int
-%LCLop min :int, int -> int
-%LCLtype float float exposed
-%LCLtype bool bool immutable
-%LCLconst FALSE bool
-%LCLconst TRUE bool
-%LCLvar x1 _int_Obj
-%LCLvar x2 _int_Obj
-%LCLvar x3 _int_Obj
-%LCLfcn f :  -> int 
-%LCLfcnGlobals _int_Obj x1; _int_Obj x2; _int_Obj x3; 
-%LCLfcn g :  -> int 
-%LCLfcnGlobals _int_Obj x1; _int_Obj x2; _int_Obj x3; 
-%LCLSymbolTableEnd
diff --git a/test/temp/pmalloc.c b/test/temp/pmalloc.c
deleted file mode 100644 (file)
index a78ba51..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdlib.h>
-
-void
-foo()
-{
-  char *p;
-  
-  if ((p = malloc(100)) == NULL)
-    printf("out of memory\n");
-  else
-    free (p);
-}
diff --git a/test/temp/returned.c b/test/temp/returned.c
deleted file mode 100644 (file)
index 0f90ef4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-extern char *returnme (/*@returned@*/ char *s);
-
-/*@only@*/ char *f (void)
-{
-  char *s = (char *) malloc (sizeof (char));
-  *s = 'a';
-
-  if (3 > 4)
-    {
-      return s;
-    }
-  else
-    {
-      return returnme (s);
-    }
-}
diff --git a/test/temp/stack.c b/test/temp/stack.c
deleted file mode 100644 (file)
index 63430f7..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-extern void fdep (/*@dependent@*/ char *s);
-
-char *salloc ()
-{
-  char x[10];
-
-  fdep (x);
-}
diff --git a/test/temp/test.c b/test/temp/test.c
deleted file mode 100644 (file)
index 02ca7d0..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-static int
-PutPixel32MSB(char * chp, int x)
-{
-    unsigned char *addr;
-
-    addr = &((unsigned char *)chp) [x];
-    addr[0] = 3;
-    return 1;
-}
diff --git a/test/temp/testfile b/test/temp/testfile
deleted file mode 100644 (file)
index ce01362..0000000
+++ /dev/null
@@ -1 +0,0 @@
-hello
diff --git a/test/temp/ud2.c b/test/temp/ud2.c
deleted file mode 100644 (file)
index 30f0109..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-void g (void)
-{
-  char *x;
-
-  f1(&x); 
-  printf("%s\n", x); 
-}
-
-void h (void)
-{
-  int z;
-  f3 (&z); /* okay! */
-}
diff --git a/test/temp/union.c b/test/temp/union.c
deleted file mode 100644 (file)
index aa7f2b1..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-typedef struct {
-  int s;
-} *sigNode;
-
-typedef struct {
-  int s;
-} *nameNode;
-
-
-typedef struct {
-  int s;
-} *typeNameNode;
-
-typedef int ltoken;
-
-typedef struct {
-  ltoken tok;
-  typeNameNode typename; 
-  int isCType;
-  union {
-    struct { 
-      /*@only@*/ /*@null@*/ nameNode name; 
-      /*@only@*/ /*@null@*/ sigNode signature;
-    } renamesortname;
-    ltoken ctype; 
-  } content;
-} *replaceNode; 
-
-/*@only@*/ replaceNode
-makeReplaceNameNode (ltoken t, /*@only@*/ typeNameNode tn, /*@only@*/ nameNode nn)
-{
-  replaceNode r = (replaceNode) malloc (sizeof (*r));
-  assert (r != NULL);
-  r->tok = t;
-  r->isCType = FALSE;
-  r->typename = tn;
-  r->content.renamesortname.name = nn;
-  r->content.renamesortname.signature = (sigNode)NULL;
-  
-  return (r);
-}
diff --git a/test/temp/unrecog.c b/test/temp/unrecog.c
deleted file mode 100644 (file)
index 06da745..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-int f (void)
-{
-  /*@asdghjf@*/
-  /*@-gasdf@*/
-  return 3;
-}
diff --git a/test/temp/void.c b/test/temp/void.c
deleted file mode 100644 (file)
index e5c18a5..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-typedef void VOID;
-
-int f (VOID)
-{
-  f();
-  return 3;
-}
diff --git a/test/temp/yeates b/test/temp/yeates
deleted file mode 100644 (file)
index db54faf..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-From owner-lclint-interest@virginia.edu Fri May 25 20:18 EDT 2001
-X-Mailer: exmh version 2.2 06/23/2000 with version: MH 6.8.3 #8[UCI]
-To: lclint-interest@cs.virginia.edu
-Subject: lack of control flow analysis
-Mime-Version: 1.0
-Date: Fri, 25 May 2001 17:12:18 -0700
-From: Mathew Yeates <mathew@fugue.jpl.nasa.gov>
-Precedence: bulk
-Content-Type: text/plain; charset=us-ascii
-Content-Length: 1277
-
-
-I did some more work on the problem I sent yesterday. Here is a slightly 
-modified version.
-Even though line 14 is never executed, it causes s->i to go dead because 
-"free" takes an
-"only" param. And, even if line 13 were executed,  line 18 would not be 
-executed
-because of the "return" statement. It appears that lclint cannot tell when a 
-particular branch
-is impossible in a particular context.
-
-The error I get from the following program is
-t.c:18:7: Dead storage s->i passed as out parameter: s->i
-
-
-
-1  #include <stdlib.h>
-     2  int foo(   /*@out@*/char  *  b  );
-     3
-     4  struct s {
-     5      /*@reldef@ *//*@relnull@ */ char *i;
-     6  };
-     7
-     8  static int redir(struct s *s)
-     9  {
-    10      s->i = malloc(1 * sizeof(int));
-    11      if (!(s->i))
-    12          return 1;
-    13      if (0) {
-    14          free(s->i);
-    15          return 1;
-    16      }
-    17      if (foo(s->i) == 1) {
-    18          free(s->i);
-    19          /*@-usereleased@ */
-    20          return 1;
-    21          /*@=usereleased@ */
-    22      }
-    23  /*@-usereleased@ */
-    24      return 0;
-    25  /*@=usereleased@ */
-    26  }
-    27
-    28  void goo(void)
-    29  {
-    30      struct s s;
-    31      if (redir(&s) == 1) exit(0);
-    32  }
-
-
-
diff --git a/test/temp/yeates.c b/test/temp/yeates.c
deleted file mode 100644 (file)
index 9155a74..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-int foo (char *b);
-
-struct s {
-  char *i;
-};
-
-static int redir(struct s *s)
-{
-  s->i = malloc(1 * sizeof(int));
-
-  if (!(s->i))
-    return 1;
-
-  if (0) {
-    free(s->i);
-    return 1;
-  }
-  
-  free (s->i);
-  return 0;
-}
-
This page took 1.169336 seconds and 5 git commands to generate.